The Answer to Life, the Universe, and Everything

Saturday, June 07, 2008

File code converting

After moving from Windows dev. environment to Linux, source file needs to be converted to UTF8 from Shift_JIS. It's done easily.
 find ./* -type f -name '*.java' -exec nkf -Luw --overwrite {} \;

No comments: