<?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: 10 &#8220;tar&#8221; Command Examples in Linux to Create and Extract Archives	</title>
	<atom:link href="https://www.binarytides.com/linux-tar-command/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.binarytides.com/linux-tar-command/</link>
	<description>News, Technology, Entertainment and more</description>
	<lastBuildDate>Mon, 01 May 2023 13:50:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: curiousviral.com		</title>
		<link>https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-243148</link>

		<dc:creator><![CDATA[curiousviral.com]]></dc:creator>
		<pubDate>Sat, 11 Apr 2020 10:13:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=7613#comment-243148</guid>

					<description><![CDATA[Get more tar command at various examples

https://curiousviral.com/learn-useful-tar-command-with/]]></description>
			<content:encoded><![CDATA[<p>Get more tar command at various examples</p>
<p><a href="https://curiousviral.com/learn-useful-tar-command-with/" rel="nofollow ugc">https://curiousviral.com/learn-useful-tar-command-with/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Oz Edri		</title>
		<link>https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-224026</link>

		<dc:creator><![CDATA[Oz Edri]]></dc:creator>
		<pubDate>Wed, 18 Dec 2019 10:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=7613#comment-224026</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-67847&quot;&gt;thedarb&lt;/a&gt;.

Thank you for this!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-67847">thedarb</a>.</p>
<p>Thank you for this!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: SRINIVAS DARIPELLI		</title>
		<link>https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-105179</link>

		<dc:creator><![CDATA[SRINIVAS DARIPELLI]]></dc:creator>
		<pubDate>Fri, 10 Feb 2017 00:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=7613#comment-105179</guid>

					<description><![CDATA[linux tar command is great tool in compresseing the files.i liked the part of compression.]]></description>
			<content:encoded><![CDATA[<p>linux tar command is great tool in compresseing the files.i liked the part of compression.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: anon		</title>
		<link>https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-104906</link>

		<dc:creator><![CDATA[anon]]></dc:creator>
		<pubDate>Tue, 07 Feb 2017 18:04:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=7613#comment-104906</guid>

					<description><![CDATA[I prefer XZ over BZIP, e. g.:

XZ_OPT=-9e tar cJf arch.tar.xz *

Note, there is a variable setting before the actual command.
XZ_OPT sets compression switch for xz (I think, something similar should be for GZ and BZ2 too). For XZ you can set compression method from -0 to -9, and append &quot;e&quot; to any in order to choose corresponding &quot;extreme&quot; method, which usually compresses better (not always (see `man xz`) but the difference is neglegable for me). Thus I wrote &quot;-9e&quot; after the equality sign.]]></description>
			<content:encoded><![CDATA[<p>I prefer XZ over BZIP, e. g.:</p>
<p>XZ_OPT=-9e tar cJf arch.tar.xz *</p>
<p>Note, there is a variable setting before the actual command.<br />
XZ_OPT sets compression switch for xz (I think, something similar should be for GZ and BZ2 too). For XZ you can set compression method from -0 to -9, and append &#8220;e&#8221; to any in order to choose corresponding &#8220;extreme&#8221; method, which usually compresses better (not always (see `man xz`) but the difference is neglegable for me). Thus I wrote &#8220;-9e&#8221; after the equality sign.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mahdieh Rostamian		</title>
		<link>https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-68046</link>

		<dc:creator><![CDATA[Mahdieh Rostamian]]></dc:creator>
		<pubDate>Tue, 22 Sep 2015 07:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=7613#comment-68046</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-67843&quot;&gt;Fulv&lt;/a&gt;.

It would be better if you use the -C option
tar cf - * &#124; tar xfp - -C /target]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-67843">Fulv</a>.</p>
<p>It would be better if you use the -C option<br />
tar cf &#8211; * | tar xfp &#8211; -C /target</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: thedarb		</title>
		<link>https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-67847</link>

		<dc:creator><![CDATA[thedarb]]></dc:creator>
		<pubDate>Tue, 24 Feb 2015 20:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=7613#comment-67847</guid>

					<description><![CDATA[You can also use tar as a recursive copy:

tar -cf - * &#124; ( cd /tmp ; tar xvf - )



That will copy everything matched by &#039;*&#039; to /tmp, recursively.  It will preserve time stamps, ownership, and all.


If you want to get fancy, you can also pass that over SSH to another server, too:


tar -cf - * &#124; ssh user@host &quot;(cd /destination/path ; tar xvf - )&quot;]]></description>
			<content:encoded><![CDATA[<p>You can also use tar as a recursive copy:</p>
<p>tar -cf &#8211; * | ( cd /tmp ; tar xvf &#8211; )</p>
<p>That will copy everything matched by &#8216;*&#8217; to /tmp, recursively.  It will preserve time stamps, ownership, and all.</p>
<p>If you want to get fancy, you can also pass that over SSH to another server, too:</p>
<p>tar -cf &#8211; * | ssh user@host &#8220;(cd /destination/path ; tar xvf &#8211; )&#8221;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Fulv		</title>
		<link>https://www.binarytides.com/linux-tar-command/comment-page-1/#comment-67843</link>

		<dc:creator><![CDATA[Fulv]]></dc:creator>
		<pubDate>Mon, 23 Feb 2015 19:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.binarytides.com/?p=7613#comment-67843</guid>

					<description><![CDATA[One of my favorite uses of tar is to recursively copy files and directories with this command:

tar cf - * &#124; ( cd /target; tar xfp -)]]></description>
			<content:encoded><![CDATA[<p>One of my favorite uses of tar is to recursively copy files and directories with this command:</p>
<p>tar cf &#8211; * | ( cd /target; tar xfp -)</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
