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

Popular posts from this blog

python - Does anyone know how to configure the hunpos wrapper class on nltk? -

mysql - How to insert just year and month into date field? -