4/22/2008

把某資料夾的 UTF8 檔案轉成 Big5

不要問我為何如此,反正 TextMate + 只能用Big5的Project 造成的。


pwd = `pwd`.chop
all_files = `find app -type f -not -regex ".*.svn.*"`
all_files.each do |file|
old_file = pwd+"/"+file.chop
new_file = pwd+"/big5/"+file.chop
`iconv -f utf-8 -t big5 #{old_file} > #{new_file}`
end




沒有留言: