<?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 commands I never knew existed: Pipe Viewer</title>
	<atom:link href="http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/</link>
	<description>Random and Useless Thoughts on Everything</description>
	<lastBuildDate>Tue, 31 Jan 2012 13:56:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Arun</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-467</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Wed, 07 Dec 2011 10:34:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-467</guid>
		<description>Hi,

I would like to copy one file from my computer to another. Both are linux and I need the log file showing the time taken to copy the file. Please help me asap.

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I would like to copy one file from my computer to another. Both are linux and I need the log file showing the time taken to copy the file. Please help me asap.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: single watch winder</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-456</link>
		<dc:creator>single watch winder</dc:creator>
		<pubDate>Tue, 22 Nov 2011 12:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-456</guid>
		<description>&lt;strong&gt;single watch winder...&lt;/strong&gt;

[...]Linux commands I never knew existed: Pipe Viewer &#124; Slashzerø[...]...</description>
		<content:encoded><![CDATA[<p><strong>single watch winder&#8230;</strong></p>
<p>[...]Linux commands I never knew existed: Pipe Viewer | Slashzerø[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abx21</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-13</link>
		<dc:creator>abx21</dc:creator>
		<pubDate>Thu, 07 Aug 2008 20:38:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-13</guid>
		<description>Yeah, I just used an example command and didn&#039;t put a lot of thought into it, frankly I didn&#039;t really expect anyone would ever see it, I will try and put more effort into the next entry.

Thanks!</description>
		<content:encoded><![CDATA[<p>Yeah, I just used an example command and didn&#8217;t put a lot of thought into it, frankly I didn&#8217;t really expect anyone would ever see it, I will try and put more effort into the next entry.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: F. Hauri</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-12</link>
		<dc:creator>F. Hauri</dc:creator>
		<pubDate>Thu, 07 Aug 2008 16:27:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-12</guid>
		<description>It&#039;s a wrong syntax:

$ cat toto &#124; cat tata &#124; gzip &gt; titi.gz

give the same result than 
$ gzip &lt; tata &gt; titi.gz

``cat toto&#039;&#039; will simply be ignored.

for doing what you expect, you need to do something like:
$ cd /home
$ size=`du -bs user &#124; sed s/[[:space:]].*$//g`
$ tar cpf - user &#124; pv -s $size &#124; gzip &gt; /tmp/backup.tar.gz
 366MB 0:00:33 [  11MB/s] [=================================&gt;] 100%            

And you will maybe get a ``not so high&#039;&#039; rate...</description>
		<content:encoded><![CDATA[<p>It&#8217;s a wrong syntax:</p>
<p>$ cat toto | cat tata | gzip &gt; titi.gz</p>
<p>give the same result than<br />
$ gzip &lt; tata &gt; titi.gz</p>
<p>&#8220;cat toto&#8221; will simply be ignored.</p>
<p>for doing what you expect, you need to do something like:<br />
$ cd /home<br />
$ size=`du -bs user | sed s/[[:space:]].*$//g`<br />
$ tar cpf &#8211; user | pv -s $size | gzip &gt; /tmp/backup.tar.gz<br />
 366MB 0:00:33 [  11MB/s] [=================================&gt;] 100%            </p>
<p>And you will maybe get a &#8220;not so high&#8221; rate&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: F. Hauri</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-11</link>
		<dc:creator>F. Hauri</dc:creator>
		<pubDate>Thu, 07 Aug 2008 16:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-11</guid>
		<description>It&#039;s a wrong syntax:

$ cat toto &#124; cat tata &#124; gzip &gt; titi.gz

give the same result than 
$ gzip &lt; tata &gt; titi.gz

``cat toto&#039;&#039; will simply be ignored.

for doing what you expect, you need to do something like:
$ cd /home
$ size=`du -bs user &#124; sed s/[[:space:]].*$//g`
$ tar zcf - user &#124; pv -s $size &#124; gzip &gt; /tmp/backup.tar.gz
 366MB 0:00:33 [  11MB/s] [=================================&gt;] 100%            

And you will maybe get a ``not so high&#039;&#039; rate...</description>
		<content:encoded><![CDATA[<p>It&#8217;s a wrong syntax:</p>
<p>$ cat toto | cat tata | gzip &gt; titi.gz</p>
<p>give the same result than<br />
$ gzip &lt; tata &gt; titi.gz</p>
<p>&#8220;cat toto&#8221; will simply be ignored.</p>
<p>for doing what you expect, you need to do something like:<br />
$ cd /home<br />
$ size=`du -bs user | sed s/[[:space:]].*$//g`<br />
$ tar zcf &#8211; user | pv -s $size | gzip &gt; /tmp/backup.tar.gz<br />
 366MB 0:00:33 [  11MB/s] [=================================&gt;] 100%            </p>
<p>And you will maybe get a &#8220;not so high&#8221; rate&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: F. Hauri</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-10</link>
		<dc:creator>F. Hauri</dc:creator>
		<pubDate>Thu, 07 Aug 2008 16:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-10</guid>
		<description>It&#039;s a wrong syntax:

$ cat toto &#124; cat tata &#124; gzip &gt; titi.gz

give the same result than 
$ gzip  titi.gz

``cat toto&#039;&#039; will simply be ignored.

for doing what you expect, you need to do something like:
$ cd /home
$ size=`du -bs user &#124; sed s/[[:space:]].*$//g`
$ tar zcf - user &#124; pv -s $size &#124; gzip &gt; /tmp/backup.tar.gz
 366MB 0:00:33 [  11MB/s] [=================================&gt;] 100%            

And you will maybe get a ``not so high&#039;&#039; rate...</description>
		<content:encoded><![CDATA[<p>It&#8217;s a wrong syntax:</p>
<p>$ cat toto | cat tata | gzip &gt; titi.gz</p>
<p>give the same result than<br />
$ gzip  titi.gz</p>
<p>&#8220;cat toto&#8221; will simply be ignored.</p>
<p>for doing what you expect, you need to do something like:<br />
$ cd /home<br />
$ size=`du -bs user | sed s/[[:space:]].*$//g`<br />
$ tar zcf &#8211; user | pv -s $size | gzip &gt; /tmp/backup.tar.gz<br />
 366MB 0:00:33 [  11MB/s] [=================================&gt;] 100%            </p>
<p>And you will maybe get a &#8220;not so high&#8221; rate&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Han</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-9</link>
		<dc:creator>Han</dc:creator>
		<pubDate>Thu, 07 Aug 2008 09:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-9</guid>
		<description>Not sure why, but it seems I need to use &quot;tar cf - user &#124;pv &#124;/bin/gzip &gt; backup.tar.gz&quot; to get it work on Ubuntu 8.04 64-bit.</description>
		<content:encoded><![CDATA[<p>Not sure why, but it seems I need to use &#8220;tar cf &#8211; user |pv |/bin/gzip &gt; backup.tar.gz&#8221; to get it work on Ubuntu 8.04 64-bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-8</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 07 Aug 2008 02:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-8</guid>
		<description>That was my point Subie.  He&#039;s GZiping the file twice.</description>
		<content:encoded><![CDATA[<p>That was my point Subie.  He&#8217;s GZiping the file twice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woody</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-7</link>
		<dc:creator>Woody</dc:creator>
		<pubDate>Thu, 07 Aug 2008 01:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-7</guid>
		<description>While pv certainly has uses, sending a USR1 signal to dd will cause it to dump a progress report including rate like so:

18335302+0 records in 18335302+0 records out 9387674624 bytes (9.4 GB) copied, 34.6279 seconds, 271 MB/s</description>
		<content:encoded><![CDATA[<p>While pv certainly has uses, sending a USR1 signal to dd will cause it to dump a progress report including rate like so:</p>
<p>18335302+0 records in 18335302+0 records out 9387674624 bytes (9.4 GB) copied, 34.6279 seconds, 271 MB/s</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe</title>
		<link>http://www.slashzero.com/2008/07/linux-commands-i-never-knew-existed-pipe-viewer/comment-page-1/#comment-6</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Thu, 07 Aug 2008 00:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slashzero.com/?p=37#comment-6</guid>
		<description>Thanks! I&#039;d never heard of it, and could use something like that!</description>
		<content:encoded><![CDATA[<p>Thanks! I&#8217;d never heard of it, and could use something like that!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

