windows - convert the encoding of many files? -
i have 2000 files encoded in windows-1256. want convert encoding utf-8 (all in once)
can notepad++ this?
i encountered same problem. in case of needs it:
#!/bin/bash mkdir ../converted x in `ls *` iconv -f windows-1256 -t utf-8 $x > ../converted/$x done
note: unix systems, in case of windows can use cygwin.
Comments
Post a Comment