<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Dtrx &#8211; An Intelligent Archive Extraction (tar, zip, cpio, rpm, deb, rar) Tool for Linux	</title>
	<atom:link href="https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 16 May 2025 18:10:30 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: dragonmouth		</title>
		<link>https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-2307728</link>

		<dc:creator><![CDATA[dragonmouth]]></dc:creator>
		<pubDate>Fri, 16 May 2025 18:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5283#comment-2307728</guid>

					<description><![CDATA[For the first four examples you do not show the use of the respective options/flags.  It  looks like you are using the exact same command to achieve four different results.]]></description>
			<content:encoded><![CDATA[<p>For the first four examples you do not show the use of the respective options/flags.  It  looks like you are using the exact same command to achieve four different results.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-2237351</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 04 Nov 2024 03:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5283#comment-2237351</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-2235906&quot;&gt;maikhai&lt;/a&gt;.

@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!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-2235906">maikhai</a>.</p>
<p>@Maikhai,</p>
<p>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!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: maikhai		</title>
		<link>https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-2235906</link>

		<dc:creator><![CDATA[maikhai]]></dc:creator>
		<pubDate>Thu, 31 Oct 2024 10:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5283#comment-2235906</guid>

					<description><![CDATA[&lt;code&gt;dtrx -d&lt;/code&gt; does not display &lt;code&gt;&quot;-d&quot;&lt;/code&gt; in the output of &lt;code&gt;&quot;--help&lt;/code&gt;&quot;.]]></description>
			<content:encoded><![CDATA[<p><code>dtrx -d</code> does not display <code>"-d"</code> in the output of <code>"--help</code>&#8220;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Leslie		</title>
		<link>https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-713551</link>

		<dc:creator><![CDATA[Jonathan Leslie]]></dc:creator>
		<pubDate>Wed, 25 Nov 2015 12:43:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5283#comment-713551</guid>

					<description><![CDATA[hi everyone, my 7zip file has a password, can i still use dtxr ? is yes then how?]]></description>
			<content:encoded><![CDATA[<p>hi everyone, my 7zip file has a password, can i still use dtxr ? is yes then how?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Heinrich		</title>
		<link>https://www.tecmint.com/dtrx-archive-extraction-tool-for-linux/comment-page-1/#comment-335142</link>

		<dc:creator><![CDATA[Heinrich]]></dc:creator>
		<pubDate>Wed, 15 Oct 2014 21:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=5283#comment-335142</guid>

					<description><![CDATA[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 &quot;&#039;$1&#039; cannot be extracted via &#062;extract&#060;&#034;
            ;;
        esac;
    else
        echo &#034;&#039;$1&#039; is not a valid file&#034;;
    fi
}]]></description>
			<content:encoded><![CDATA[<p>I use a function in my .bashrc which does the extraction job for me:</p>
<p>extract ()<br />
{<br />
    if [ -f $1 ]; then<br />
        case $1 in<br />
            *.tar.bz2)<br />
                tar xvjf $1<br />
            ;;<br />
            *.tar.gz)<br />
                tar xvzf $1<br />
            ;;<br />
            *.bz2)<br />
                bunzip2 $1<br />
            ;;<br />
            *.rar)<br />
                unrar x $1<br />
            ;;<br />
            *.gz)<br />
                gunzip $1<br />
            ;;<br />
            *.tar)<br />
                tar xvf $1<br />
            ;;<br />
            *.tbz2)<br />
                tar xvjf $1<br />
            ;;<br />
            *.tgz)<br />
                tar xvzf $1<br />
            ;;<br />
            *.zip)<br />
                unzip $1<br />
            ;;<br />
            *.Z)<br />
                uncompress $1<br />
            ;;<br />
            *.7z)<br />
                7z x $1<br />
            ;;<br />
            *.tar.xz)<br />
                tar -xJf $1<br />
            ;;<br />
            *)<br />
                echo &#8220;&#8216;$1&#8217; cannot be extracted via &gt;extract&lt;&quot;<br />
            ;;<br />
        esac;<br />
    else<br />
        echo &quot;&#039;$1&#039; is not a valid file&quot;;<br />
    fi<br />
}</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
