Comments on: Dtrx – An Intelligent Archive Extraction (tar, zip, cpio, rpm, deb, rar) Tool for Linux https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Mon, 04 Nov 2024 03:55:15 +0000 hourly 1 By: Ravi Saive https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-2237351 Mon, 04 Nov 2024 03:55:15 +0000 http://www.tecmint.com/?p=5283#comment-2237351 In reply to maikhai.

@Maikhai,

You might want to check the man pages or the official documentation for more details on available options. If you need more assistance, feel free to ask!

]]>
By: maikhai https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-2235906 Thu, 31 Oct 2024 10:14:02 +0000 http://www.tecmint.com/?p=5283#comment-2235906 dtrx -d does not display "-d" in the output of "--help“.

]]>
By: Jonathan Leslie https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-713551 Wed, 25 Nov 2015 12:43:45 +0000 http://www.tecmint.com/?p=5283#comment-713551 hi everyone, my 7zip file has a password, can i still use dtxr ? is yes then how?

]]>
By: Heinrich https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-335142 Wed, 15 Oct 2014 21:40:04 +0000 http://www.tecmint.com/?p=5283#comment-335142 I use a function in my .bashrc which does the extraction job for me:

extract ()
{
if [ -f $1 ]; then
case $1 in
*.tar.bz2)
tar xvjf $1
;;
*.tar.gz)
tar xvzf $1
;;
*.bz2)
bunzip2 $1
;;
*.rar)
unrar x $1
;;
*.gz)
gunzip $1
;;
*.tar)
tar xvf $1
;;
*.tbz2)
tar xvjf $1
;;
*.tgz)
tar xvzf $1
;;
*.zip)
unzip $1
;;
*.Z)
uncompress $1
;;
*.7z)
7z x $1
;;
*.tar.xz)
tar -xJf $1
;;
*)
echo “‘$1’ cannot be extracted via >extract<"
;;
esac;
else
echo "'$1' is not a valid file";
fi
}

]]>
By: Jan https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-331070 Sun, 12 Oct 2014 20:19:29 +0000 http://www.tecmint.com/?p=5283#comment-331070 The tar command has autodetection of compression. No need for -zxf or -xjf etc, just use -xf.

]]>