<?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: Quick File Copy on File Name with Sample Extension	</title>
	<atom:link href="https://logs.paulooi.com/quick-file-copy-on-file-name-with-sample-extension.php/feed" rel="self" type="application/rss+xml" />
	<link>https://logs.paulooi.com/quick-file-copy-on-file-name-with-sample-extension.php</link>
	<description>Systems Admin, Web Development and etc</description>
	<lastBuildDate>Tue, 08 Jun 2010 18:48:53 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: rschmutz		</title>
		<link>https://logs.paulooi.com/quick-file-copy-on-file-name-with-sample-extension.php/comment-page-1#comment-76957</link>

		<dc:creator><![CDATA[rschmutz]]></dc:creator>
		<pubDate>Tue, 08 Jun 2010 18:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=979#comment-76957</guid>

					<description><![CDATA[personally I like the bash (and ksh?) curly-brace extensions (albeit the basename might be a shell-internal command):

for f in *sample; do mv $f ${f/sample.//}; done

granted, it might not be that readable but you get used to it :)
--
rs]]></description>
			<content:encoded><![CDATA[<p>personally I like the bash (and ksh?) curly-brace extensions (albeit the basename might be a shell-internal command):</p>
<p>for f in *sample; do mv $f ${f/sample.//}; done</p>
<p>granted, it might not be that readable but you get used to it 🙂<br />
&#8212;<br />
rs</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: takizo		</title>
		<link>https://logs.paulooi.com/quick-file-copy-on-file-name-with-sample-extension.php/comment-page-1#comment-76889</link>

		<dc:creator><![CDATA[takizo]]></dc:creator>
		<pubDate>Fri, 21 May 2010 00:13:36 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=979#comment-76889</guid>

					<description><![CDATA[thanks mate for the great tips!]]></description>
			<content:encoded><![CDATA[<p>thanks mate for the great tips!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: chfl4gs_		</title>
		<link>https://logs.paulooi.com/quick-file-copy-on-file-name-with-sample-extension.php/comment-page-1#comment-76886</link>

		<dc:creator><![CDATA[chfl4gs_]]></dc:creator>
		<pubDate>Thu, 20 May 2010 16:21:22 +0000</pubDate>
		<guid isPermaLink="false">http://systems.takizo.com/?p=979#comment-76886</guid>

					<description><![CDATA[shorter one... assuming we have .sample files from installation

for f in *sample ; do mv $f `basename $f sample`cfg; done]]></description>
			<content:encoded><![CDATA[<p>shorter one&#8230; assuming we have .sample files from installation</p>
<p>for f in *sample ; do mv $f `basename $f sample`cfg; done</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
