源文件分布在src目录下,原始编码为GBK,转换出来的文件编码为UTF-8,放在/utf/src目录下
find src -type d -exec mkdir -p utf/{} \;
find src -type f -exec iconv -f GBK -t UTF-8 {} -o utf/{} \;
从[url="http://blogold.chinaunix.net/u3/95649/showart_2010515.html"]这篇文章[/url]看来的
find src -type d -exec mkdir -p utf/{} \;
find src -type f -exec iconv -f GBK -t UTF-8 {} -o utf/{} \;
从[url="http://blogold.chinaunix.net/u3/95649/showart_2010515.html"]这篇文章[/url]看来的