<?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: Linux QuickTip: Downloading and Un-tarring in One Step</title>
	<atom:link href="http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/</link>
	<description>Computer Help from your Friendly How-To Geek</description>
	<lastBuildDate>Sun, 08 Nov 2009 07:56:33 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sikachu!</title>
		<link>http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/comment-page-1/#comment-68410</link>
		<dc:creator>Sikachu!</dc:creator>
		<pubDate>Tue, 10 Mar 2009 12:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/#comment-68410</guid>
		<description>Thank you very much :) 

I know I could done this, and you really made my day!</description>
		<content:encoded><![CDATA[<p>Thank you very much <img src='http://www.howtogeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>I know I could done this, and you really made my day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: supermansghost</title>
		<link>http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/comment-page-1/#comment-21566</link>
		<dc:creator>supermansghost</dc:creator>
		<pubDate>Sun, 26 Aug 2007 06:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/#comment-21566</guid>
		<description>I like the turl script - very useful</description>
		<content:encoded><![CDATA[<p>I like the turl script &#8211; very useful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Geek</title>
		<link>http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/comment-page-1/#comment-18653</link>
		<dc:creator>The Geek</dc:creator>
		<pubDate>Sat, 23 Jun 2007 20:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/#comment-18653</guid>
		<description>I wrapped this into a script that I called turl:

--------- beginning of turl -----------
#!/bin/sh
# Usage: turl &lt;url&gt;

curl &quot;$1&quot; &#124; tar xz 
--------- end of turl -----------

I also wrapped wget into a script that I called tget, for servers that don&#039;t have curl

--------- beginning of tget -----------
#!/bin/sh
# Usage: tget &lt;url&gt;

wget &quot;$1&quot; -O- &#124; tar xz
--------- end of tget -----------

Awesome tip...</description>
		<content:encoded><![CDATA[<p>I wrapped this into a script that I called turl:</p>
<p>&#8212;&#8212;&#8212; beginning of turl &#8212;&#8212;&#8212;&#8211;<br />
#!/bin/sh<br />
# Usage: turl &lt;url&gt;</p>
<p>curl &#8220;$1&#8243; | tar xz<br />
&#8212;&#8212;&#8212; end of turl &#8212;&#8212;&#8212;&#8211;</p>
<p>I also wrapped wget into a script that I called tget, for servers that don&#8217;t have curl</p>
<p>&#8212;&#8212;&#8212; beginning of tget &#8212;&#8212;&#8212;&#8211;<br />
#!/bin/sh<br />
# Usage: tget &lt;url&gt;</p>
<p>wget &#8220;$1&#8243; -O- | tar xz<br />
&#8212;&#8212;&#8212; end of tget &#8212;&#8212;&#8212;&#8211;</p>
<p>Awesome tip&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr Linux</title>
		<link>http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/comment-page-1/#comment-18648</link>
		<dc:creator>Mr Linux</dc:creator>
		<pubDate>Sat, 23 Jun 2007 17:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/#comment-18648</guid>
		<description>True, but curl doesn&#039;t require any extra switches to pipe to stdout.

On the plus side (for using wget), wget is included with most *nix systems whereas it&#039;s hit-and-miss with curl.</description>
		<content:encoded><![CDATA[<p>True, but curl doesn&#8217;t require any extra switches to pipe to stdout.</p>
<p>On the plus side (for using wget), wget is included with most *nix systems whereas it&#8217;s hit-and-miss with curl.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael B</title>
		<link>http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/comment-page-1/#comment-18640</link>
		<dc:creator>Michael B</dc:creator>
		<pubDate>Sat, 23 Jun 2007 08:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/uncategorized/linux-quicktip-downloading-and-un-tarring-in-one-step/#comment-18640</guid>
		<description>You can use wget instead of curl for this:

wget http://wordpress.org/latest.tar.gz -O- &#124; tar xz

-O- means &quot;output to standard output&quot;.</description>
		<content:encoded><![CDATA[<p>You can use wget instead of curl for this:</p>
<p>wget <a href="http://wordpress.org/latest.tar.gz" rel="nofollow">http://wordpress.org/latest.tar.gz</a> -O- | tar xz</p>
<p>-O- means &#8220;output to standard output&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
