<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[刘佳的技术日志、博客]]></title> 
<link>http://www.52zhe.cn/index.php</link> 
<description><![CDATA[技术的事，喜欢就研究。]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[刘佳的技术日志、博客]]></copyright>
<item>
<link>http://www.52zhe.cn/read.php/.htm</link>
<title><![CDATA[Linux下删除特殊名字的文件]]></title> 
<author>kook &lt;admin@yourname.com&gt;</author>
<category><![CDATA[Linux]]></category>
<pubDate>Thu, 07 May 2009 22:34:56 +0000</pubDate> 
<guid>http://www.52zhe.cn/read.php/.htm</guid> 
<description>
<![CDATA[ 
	以前曾写过删除以"-"开头的文件，链接在这里http://www.52zhe.cn/read.php/153.htm，最近又碰到乱码的文件，这次用i节点来删除，无论什么文件都可以用这种方式删除，当然也包括文件夹。<br/><br/>先用ls -i *获取那个文件的i节点，然后用find命令加管道删除即可。假设那个文件i节点为25000,进入那个文件所在目录下面，如下操作：<br/><div class="code"><br/>方法1:<br/>find ./ -inum 25000 &#124; xargs rm -rf <br/>方法2:<br/>find ./ -inum 25000&nbsp;&nbsp;-exec rm &#123;&#125; -rf &#92;;<br/></div>
]]>
</description>
</item><item>
<link>http://www.52zhe.cn/read.php?&amp;guid=0#topreply</link>
<title><![CDATA[[评论] Linux下删除特殊名字的文件]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.52zhe.cn/read.php?&amp;guid=0#topreply</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>