<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Two more universal decompressors</title>
	<atom:link href="http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Dieter_be</title>
		<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45575</link>
		<dc:creator><![CDATA[Dieter_be]]></dc:creator>
		<pubDate>Sat, 25 Sep 2010 18:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45575</guid>
		<description><![CDATA[There is also &#039;e&#039;.
http://fail2care.com/e-extract-any-archive

unp does not have a website.
atool is written in perl.
dtrx is written in python.
e is written in ruby.

So I don&#039;t like unp and atool.
dtrx has more features I need then e. (like &quot;make sure everything is in 1 subdirectory&quot;), and -t (list) support.  So that&#039;s my pick.]]></description>
		<content:encoded><![CDATA[<p>There is also &#8216;e&#8217;.<br />
<a href="http://fail2care.com/e-extract-any-archive" rel="nofollow">http://fail2care.com/e-extract-any-archive</a></p>
<p>unp does not have a website.<br />
atool is written in perl.<br />
dtrx is written in python.<br />
e is written in ruby.</p>
<p>So I don&#8217;t like unp and atool.<br />
dtrx has more features I need then e. (like &#8220;make sure everything is in 1 subdirectory&#8221;), and -t (list) support.  So that&#8217;s my pick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: msx</title>
		<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45496</link>
		<dc:creator><![CDATA[msx]]></dc:creator>
		<pubDate>Mon, 20 Sep 2010 05:41:54 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45496</guid>
		<description><![CDATA[7z are just 2 letters ;)

@gogi-goji beautiful, tnx 4 sharing!]]></description>
		<content:encoded><![CDATA[<p>7z are just 2 letters <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>@gogi-goji beautiful, tnx 4 sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: x33a</title>
		<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45492</link>
		<dc:creator><![CDATA[x33a]]></dc:creator>
		<pubDate>Mon, 20 Sep 2010 02:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45492</guid>
		<description><![CDATA[I like to manually issue the command according to the file type. This way i won&#039;t forget the syntax, for times when these combined utilities aren&#039;t available.

But, i must agree these things are convenient, and if someone cares to add a gui to it, then they would be noob friendly too :D]]></description>
		<content:encoded><![CDATA[<p>I like to manually issue the command according to the file type. This way i won&#8217;t forget the syntax, for times when these combined utilities aren&#8217;t available.</p>
<p>But, i must agree these things are convenient, and if someone cares to add a gui to it, then they would be noob friendly too <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gogi-goji</title>
		<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45483</link>
		<dc:creator><![CDATA[gogi-goji]]></dc:creator>
		<pubDate>Sun, 19 Sep 2010 21:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45483</guid>
		<description><![CDATA[I just have a little bit of code in my .bashrc (I think I stole it from someone else) to deal with decompressing files.

[code]
# Automagically choose the right command to extract an archive
# Syntax: extract *compressedfile*
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        ;;
              *)           echo &quot;don&#039;t know how to extract &#039;$1&#039;...&quot; ;;
          esac
   else
          echo &quot;&#039;$1&#039; is not a valid file!&quot;
   fi
}
[/code]]]></description>
		<content:encoded><![CDATA[<p>I just have a little bit of code in my .bashrc (I think I stole it from someone else) to deal with decompressing files.</p>
<pre class="brush: plain; title: ; notranslate">
# Automagically choose the right command to extract an archive
# Syntax: extract *compressedfile*
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        ;;
              *)           echo &quot;don't know how to extract '$1'...&quot; ;;
          esac
   else
          echo &quot;'$1' is not a valid file!&quot;
   fi
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45482</link>
		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Sun, 19 Sep 2010 17:39:37 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45482</guid>
		<description><![CDATA[Do all four of these tools support the same types of compressed files, or are some more comprehensive than others?]]></description>
		<content:encoded><![CDATA[<p>Do all four of these tools support the same types of compressed files, or are some more comprehensive than others?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mayday</title>
		<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45480</link>
		<dc:creator><![CDATA[mayday]]></dc:creator>
		<pubDate>Sun, 19 Sep 2010 14:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45480</guid>
		<description><![CDATA[By the way, deco is a good one, too.

http://hartlich.com/deco/]]></description>
		<content:encoded><![CDATA[<p>By the way, deco is a good one, too.</p>
<p><a href="http://hartlich.com/deco/" rel="nofollow">http://hartlich.com/deco/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pilpilon</title>
		<link>http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45478</link>
		<dc:creator><![CDATA[pilpilon]]></dc:creator>
		<pubDate>Sun, 19 Sep 2010 14:02:42 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2010/09/19/two-more-universal-decompressors/#comment-45478</guid>
		<description><![CDATA[I want to type two: 7z :)]]></description>
		<content:encoded><![CDATA[<p>I want to type two: 7z <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
