<?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"
	>
<channel>
	<title>Comments on: Context Free：迭代图编译器</title>
	<atom:link href="http://linuxtoy.org/archives/context-free.html/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxtoy.org/archives/context-free.html</link>
	<description>LinuxTOY 是一个致力于提供 Linux 相关资讯的专题站点。如果您发现了好用好玩的 Linux 东东并愿意发扬自由、分享的精神，可以点击顶部导航 Contact 按钮进行投稿。</description>
	<pubDate>Mon, 08 Sep 2008 04:52:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: wwdcfw</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77887</link>
		<dc:creator>wwdcfw</dc:creator>
		<pubDate>Sat, 23 Feb 2008 16:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77887</guid>
		<description>酷</description>
		<content:encoded><![CDATA[<p>酷</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: basename</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77561</link>
		<dc:creator>basename</dc:creator>
		<pubDate>Fri, 22 Feb 2008 07:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77561</guid>
		<description>for i in input/*.cfdg; do ./cfdg -s 800 $i demo/$(basename $i .cfdg).png; done</description>
		<content:encoded><![CDATA[<p>for i in input/*.cfdg; do ./cfdg -s 800 $i demo/$(basename $i .cfdg).png; done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MDZ</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77519</link>
		<dc:creator>MDZ</dc:creator>
		<pubDate>Fri, 22 Feb 2008 03:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77519</guid>
		<description>@walkerxk：感谢提醒，今后会注意的。</description>
		<content:encoded><![CDATA[<p>@walkerxk：感谢提醒，今后会注意的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eagle</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77504</link>
		<dc:creator>eagle</dc:creator>
		<pubDate>Fri, 22 Feb 2008 02:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77504</guid>
		<description>不错。</description>
		<content:encoded><![CDATA[<p>不错。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: playfish</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77502</link>
		<dc:creator>playfish</dc:creator>
		<pubDate>Fri, 22 Feb 2008 02:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77502</guid>
		<description>分形生成器</description>
		<content:encoded><![CDATA[<p>分形生成器</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: walkerxk</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77498</link>
		<dc:creator>walkerxk</dc:creator>
		<pubDate>Fri, 22 Feb 2008 02:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77498</guid>
		<description>files=`ls input/*.cfdg &#124;cut -d. -f1 &#124;cut -d/ -f2`
还是改成files=$(ls input/*.cfdg &#124;cut -d. -f1 &#124;cut -d/ -f2)吧，很多情况下`和'是区分不开的，虽然你注释了，但是其他人看到后写东西不一定会注释的。当然，有些特别的地方，只能用``而不能用$()，但是平常使用很少。</description>
		<content:encoded><![CDATA[<p>files=`ls input/*.cfdg |cut -d. -f1 |cut -d/ -f2`<br />
还是改成files=$(ls input/*.cfdg |cut -d. -f1 |cut -d/ -f2)吧，很多情况下`和'是区分不开的，虽然你注释了，但是其他人看到后写东西不一定会注释的。当然，有些特别的地方，只能用``而不能用$()，但是平常使用很少。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stone</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77491</link>
		<dc:creator>stone</dc:creator>
		<pubDate>Fri, 22 Feb 2008 01:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77491</guid>
		<description>有创意。。。。</description>
		<content:encoded><![CDATA[<p>有创意。。。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fireflyoo</title>
		<link>http://linuxtoy.org/archives/context-free.html#comment-77408</link>
		<dc:creator>fireflyoo</dc:creator>
		<pubDate>Thu, 21 Feb 2008 16:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/context-free%ef%bc%9a%e8%bf%ad%e4%bb%a3%e5%9b%be%e7%bc%96%e8%af%91%e5%99%a8.html#comment-77408</guid>
		<description>这个Toy不错哦。。</description>
		<content:encoded><![CDATA[<p>这个Toy不错哦。。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
