<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kenfodder &#187; linux</title>
	<atom:link href="http://kenfodder.com/index.php/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://kenfodder.com</link>
	<description>My name is Kenneth Lee. I&#039;m a Software Developer and this is my blog</description>
	<lastBuildDate>Mon, 06 Jul 2009 11:57:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Renaming multiple files with SED</title>
		<link>http://kenfodder.com/index.php/2009/07/06/renaming-multiple-files-with-sed/</link>
		<comments>http://kenfodder.com/index.php/2009/07/06/renaming-multiple-files-with-sed/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 11:57:46 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[shell scripting]]></category>

		<guid isPermaLink="false">http://kenfodder.com/?p=38</guid>
		<description><![CDATA[for file in *.htm ; do mv $file `echo $file &#124; sed 's/\(.*\.\)htm/\1html/'` ; done

]]></description>
			<content:encoded><![CDATA[<p><code>for file in *.htm ; do mv $file `echo $file | sed 's/\(.*\.\)htm/\1html/'` ; done<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kenfodder.com/index.php/2009/07/06/renaming-multiple-files-with-sed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Git cheat sheet</title>
		<link>http://kenfodder.com/index.php/2009/06/16/git-cheat-sheet/</link>
		<comments>http://kenfodder.com/index.php/2009/06/16/git-cheat-sheet/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 09:05:56 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://kenfodder.com/?p=35</guid>
		<description><![CDATA[
http://cheat.errtheblog.com/s/git

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://cheat.errtheblog.com/s/git">http://cheat.errtheblog.com/s/git</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kenfodder.com/index.php/2009/06/16/git-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For loop to rsync some files</title>
		<link>http://kenfodder.com/index.php/2009/06/13/for-loop-to-rsync-some-files/</link>
		<comments>http://kenfodder.com/index.php/2009/06/13/for-loop-to-rsync-some-files/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 19:19:40 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[shell scripting]]></category>

		<guid isPermaLink="false">http://kenfodder.com/?p=12</guid>
		<description><![CDATA[Copy over each file beginning blegga containing number between 516 to 524 and ending with avi&#8230;
for (( i = 516; i &#60; 525; i++)); do rsync -P blegga*$i*.avi moo:foo/; done
]]></description>
			<content:encoded><![CDATA[<p>Copy over each file beginning <tt>blegga</tt> containing number between <tt>516</tt> to <tt>524</tt> and ending with <tt>avi</tt>&#8230;</p>
<p><code>for (( i = 516; i &lt; 525; i++)); do rsync -P blegga*$i*.avi moo:foo/; done</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kenfodder.com/index.php/2009/06/13/for-loop-to-rsync-some-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
