<?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: A srcipt for running processes in parallel in Bash</title>
	<atom:link href="http://pebblesinthesand.wordpress.com/2008/05/22/a-srcipt-for-running-processes-in-parallel-in-bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://pebblesinthesand.wordpress.com/2008/05/22/a-srcipt-for-running-processes-in-parallel-in-bash/</link>
	<description>Tales from the information era - tips related to Linux / computer science</description>
	<lastBuildDate>Mon, 11 May 2009 17:14:16 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kawakamasu</title>
		<link>http://pebblesinthesand.wordpress.com/2008/05/22/a-srcipt-for-running-processes-in-parallel-in-bash/#comment-22</link>
		<dc:creator>kawakamasu</dc:creator>
		<pubDate>Tue, 02 Dec 2008 07:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://pebblesinthesand.wordpress.com/?p=8#comment-22</guid>
		<description>Thanks!
I don&#039;t know, I never tried that. But since you have the PIDs, you could poll for the run times in the checkqueue routine and terminate processes if necessary. I suppose that there is a way for getting run times in Bash.</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
I don&#8217;t know, I never tried that. But since you have the PIDs, you could poll for the run times in the checkqueue routine and terminate processes if necessary. I suppose that there is a way for getting run times in Bash.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://pebblesinthesand.wordpress.com/2008/05/22/a-srcipt-for-running-processes-in-parallel-in-bash/#comment-21</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Mon, 01 Dec 2008 10:03:47 +0000</pubDate>
		<guid isPermaLink="false">http://pebblesinthesand.wordpress.com/?p=8#comment-21</guid>
		<description>Thank you, great script! 
Using it to spawn some server instances.
Any idea how to keep track (in Bash) the spawned
processes and kill them after N seconds?


Joe</description>
		<content:encoded><![CDATA[<p>Thank you, great script!<br />
Using it to spawn some server instances.<br />
Any idea how to keep track (in Bash) the spawned<br />
processes and kill them after N seconds?</p>
<p>Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kawakamasu</title>
		<link>http://pebblesinthesand.wordpress.com/2008/05/22/a-srcipt-for-running-processes-in-parallel-in-bash/#comment-20</link>
		<dc:creator>kawakamasu</dc:creator>
		<pubDate>Mon, 20 Oct 2008 14:30:52 +0000</pubDate>
		<guid isPermaLink="false">http://pebblesinthesand.wordpress.com/?p=8#comment-20</guid>
		<description>&gt; Paul
Good point, never thought of that.

&gt; Leon Roy
Hmm, maybe you have some other processes running that occasionally steal your cputime. There&#039;s an command line utility called htop that you can use to monitor what your CPUs are actually doing...</description>
		<content:encoded><![CDATA[<p>&gt; Paul<br />
Good point, never thought of that.</p>
<p>&gt; Leon Roy<br />
Hmm, maybe you have some other processes running that occasionally steal your cputime. There&#8217;s an command line utility called htop that you can use to monitor what your CPUs are actually doing&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon Roy</title>
		<link>http://pebblesinthesand.wordpress.com/2008/05/22/a-srcipt-for-running-processes-in-parallel-in-bash/#comment-19</link>
		<dc:creator>Leon Roy</dc:creator>
		<pubDate>Sat, 18 Oct 2008 11:53:36 +0000</pubDate>
		<guid isPermaLink="false">http://pebblesinthesand.wordpress.com/?p=8#comment-19</guid>
		<description>Great script. Curiously when I use it to batch compress a folder of .wav files to .mp3 it doesn&#039;t always take the same amount of time, sometimes finishing around 1m20s, sometimes 1m40s.</description>
		<content:encoded><![CDATA[<p>Great script. Curiously when I use it to batch compress a folder of .wav files to .mp3 it doesn&#8217;t always take the same amount of time, sometimes finishing around 1m20s, sometimes 1m40s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://pebblesinthesand.wordpress.com/2008/05/22/a-srcipt-for-running-processes-in-parallel-in-bash/#comment-9</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 03 Jun 2008 19:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://pebblesinthesand.wordpress.com/?p=8#comment-9</guid>
		<description>Change:
 $CMD &amp;

To:
eval &quot;$CMD &amp;&quot;

If you want to do things like:
par.sh &#039;tr -d &quot; &quot; * &gt; $(basename * .txt)-stripped.txt&#039; *.txt

Without the eval it&#039;ll treat &gt; and $(basename...) as arguments to tr.</description>
		<content:encoded><![CDATA[<p>Change:<br />
 $CMD &amp;</p>
<p>To:<br />
eval &#8220;$CMD &amp;&#8221;</p>
<p>If you want to do things like:<br />
par.sh &#8216;tr -d &#8221; &#8221; * &gt; $(basename * .txt)-stripped.txt&#8217; *.txt</p>
<p>Without the eval it&#8217;ll treat &gt; and $(basename&#8230;) as arguments to tr.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
