<?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: For loop to rsync some files</title>
	<atom:link href="http://kenfodder.com/index.php/2009/06/13/for-loop-to-rsync-some-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://kenfodder.com/index.php/2009/06/13/for-loop-to-rsync-some-files/</link>
	<description>My name is Kenneth Lee. I&#039;m a Software Developer and this is my blog</description>
	<lastBuildDate>Fri, 01 Jan 2010 12:13:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter Vandenberk</title>
		<link>http://kenfodder.com/index.php/2009/06/13/for-loop-to-rsync-some-files/comment-page-1/#comment-125</link>
		<dc:creator>Peter Vandenberk</dc:creator>
		<pubDate>Fri, 01 Jan 2010 12:13:08 +0000</pubDate>
		<guid isPermaLink="false">http://kenfodder.com/?p=12#comment-125</guid>
		<description>Here&#039;s an alternative way, using either the seq command (on GNU-based systems like Linux) or else the jot command (on BSD-based systems like Darwin / MacOSX)...

&lt;b&gt;seq (on most GNU systems)&lt;/b&gt;


for i in `seq 516 524` ; do rsync -P blegga*${i}*.avi moo:foo/ ; done


&lt;b&gt;jot (on most BSD systems)&lt;/b&gt;


for i in `jot - 516 524` ; do rsync -P blegga*${i}*.avi moo:foo/ ; done
</description>
		<content:encoded><![CDATA[<p>Here&#8217;s an alternative way, using either the seq command (on GNU-based systems like Linux) or else the jot command (on BSD-based systems like Darwin / MacOSX)&#8230;</p>
<p><b>seq (on most GNU systems)</b></p>
<p>for i in `seq 516 524` ; do rsync -P blegga*${i}*.avi moo:foo/ ; done</p>
<p><b>jot (on most BSD systems)</b></p>
<p>for i in `jot &#8211; 516 524` ; do rsync -P blegga*${i}*.avi moo:foo/ ; done</p>
]]></content:encoded>
	</item>
</channel>
</rss>

