<?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: One Liner to Decompress tar.gz Files</title>
	<atom:link href="http://www.nerdydork.com/one-liner-to-decompress-targz-files.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.nerdydork.com/one-liner-to-decompress-targz-files.html</link>
	<description>Dustin Davis reviews... the internet.</description>
	<lastBuildDate>Thu, 11 Mar 2010 02:42:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: john@Orlando vacation homes and florida villas</title>
		<link>http://www.nerdydork.com/one-liner-to-decompress-targz-files.html/comment-page-1#comment-6486</link>
		<dc:creator>john@Orlando vacation homes and florida villas</dc:creator>
		<pubDate>Wed, 06 Jan 2010 04:37:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.nerdydork.com/one-liner-to-decompress-targz-files.html#comment-6486</guid>
		<description>Being of advanced years I find aliases are the way to go! :)</description>
		<content:encoded><![CDATA[<p>Being of advanced years I find aliases are the way to go! <img src='http://www.nerdydork.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seppo Vuolteenaho@photodeus.com</title>
		<link>http://www.nerdydork.com/one-liner-to-decompress-targz-files.html/comment-page-1#comment-6438</link>
		<dc:creator>Seppo Vuolteenaho@photodeus.com</dc:creator>
		<pubDate>Wed, 30 Dec 2009 13:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.nerdydork.com/one-liner-to-decompress-targz-files.html#comment-6438</guid>
		<description>So ever considered making an alias for it?

in ~/.bash_rc or ~/bash_aliases (or whatever is suitable for your distro)

Add for example

# Extract tar.gz
alias tarx=&#039;tar xvzf&#039;

Or name it anything you are sure you will remember :)</description>
		<content:encoded><![CDATA[<p>So ever considered making an alias for it?</p>
<p>in ~/.bash_rc or ~/bash_aliases (or whatever is suitable for your distro)</p>
<p>Add for example</p>
<p># Extract tar.gz<br />
alias tarx=&#8217;tar xvzf&#8217;</p>
<p>Or name it anything you are sure you will remember <img src='http://www.nerdydork.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: "JimiAdam@Linux guide for beginner"</title>
		<link>http://www.nerdydork.com/one-liner-to-decompress-targz-files.html/comment-page-1#comment-5942</link>
		<dc:creator>"JimiAdam@Linux guide for beginner"</dc:creator>
		<pubDate>Mon, 05 Oct 2009 16:23:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.nerdydork.com/one-liner-to-decompress-targz-files.html#comment-5942</guid>
		<description>Yup. You don&#039;t need to provide &#039;my_dir&#039; when extracting a tar archived file. You do that if you are creating a tar archive file such as:

tar cvf my_dir.tar.gz my_dir1 my_dir2

Anyway, tar is a great tool for backup too.</description>
		<content:encoded><![CDATA[<p>Yup. You don&#8217;t need to provide &#8216;my_dir&#8217; when extracting a tar archived file. You do that if you are creating a tar archive file such as:</p>
<p>tar cvf my_dir.tar.gz my_dir1 my_dir2</p>
<p>Anyway, tar is a great tool for backup too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shae@Linux Forum</title>
		<link>http://www.nerdydork.com/one-liner-to-decompress-targz-files.html/comment-page-1#comment-5801</link>
		<dc:creator>shae@Linux Forum</dc:creator>
		<pubDate>Tue, 15 Sep 2009 04:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.nerdydork.com/one-liner-to-decompress-targz-files.html#comment-5801</guid>
		<description>I consider myself pretty good with Linux and I still have to look that up when I need it.  I think that anymore I do not use it enough to really remember it.</description>
		<content:encoded><![CDATA[<p>I consider myself pretty good with Linux and I still have to look that up when I need it.  I think that anymore I do not use it enough to really remember it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeet@directory submission packages</title>
		<link>http://www.nerdydork.com/one-liner-to-decompress-targz-files.html/comment-page-1#comment-5016</link>
		<dc:creator>Jeet@directory submission packages</dc:creator>
		<pubDate>Fri, 22 May 2009 14:35:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.nerdydork.com/one-liner-to-decompress-targz-files.html#comment-5016</guid>
		<description>Wow, I can&#039;t believe that!! You may have to put -xvzf on some systems and last argument my_dir is not really required.

This works for tar.gz as well as tgz files. If you have tar + bz2 file, you can use xvjf -- somehow i always use xvzf and not xzvf.</description>
		<content:encoded><![CDATA[<p>Wow, I can&#8217;t believe that!! You may have to put -xvzf on some systems and last argument my_dir is not really required.</p>
<p>This works for tar.gz as well as tgz files. If you have tar + bz2 file, you can use xvjf &#8212; somehow i always use xvzf and not xzvf.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
