<?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: Run a command on all files in a hierarchy</title>
	<atom:link href="http://backreference.org/2010/07/10/run-a-command-on-all-files-in-a-hierarchy/feed/" rel="self" type="application/rss+xml" />
	<link>http://backreference.org/2010/07/10/run-a-command-on-all-files-in-a-hierarchy/</link>
	<description>Capture and remember</description>
	<lastBuildDate>Thu, 16 May 2013 18:26:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Ole Tange</title>
		<link>http://backreference.org/2010/07/10/run-a-command-on-all-files-in-a-hierarchy/comment-page-1/#comment-785</link>
		<dc:creator>Ole Tange</dc:creator>
		<pubDate>Sun, 11 Jul 2010 06:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://backreference.org/?p=1380#comment-785</guid>
		<description><![CDATA[Sometimes the command you want to run is compute intensive. If you have access to several computer GNU Parallel http://www.gnu.org/software/parallel/ makes it possible to have those computers help do the computation. E.g. convert all .wav to .mp3 using local computer and computer1+2 running one job per CPU-core:

    find . -type f -name &#039;*.wav&#039; &#124; parallel -j+0 --trc {.}.mp3 -S :,computer1,computer2 &quot;lame {} -o {.}.mp3&quot;

To learn more watch the intro video for GNU Parallel: http://www.youtube.com/watch?v=OpaiGYxkSuQ]]></description>
		<content:encoded><![CDATA[<p>Sometimes the command you want to run is compute intensive. If you have access to several computer GNU Parallel <a href="http://www.gnu.org/software/parallel/" rel="nofollow">http://www.gnu.org/software/parallel/</a> makes it possible to have those computers help do the computation. E.g. convert all .wav to .mp3 using local computer and computer1+2 running one job per CPU-core:</p>
<p>    find . -type f -name '*.wav' | parallel -j+0 --trc {.}.mp3 -S :,computer1,computer2 "lame {} -o {.}.mp3"</p>
<p>To learn more watch the intro video for GNU Parallel: <a href="http://www.youtube.com/watch?v=OpaiGYxkSuQ" rel="nofollow">http://www.youtube.com/watch?v=OpaiGYxkSuQ</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
