Convert file encoding on Mac


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. find /Directory/With/Files -name '*.php' | while read f ; do iconv -f UTF-8 -t CP1251 <$f >$f.tmp && mv "$f.tmp" "$f" ; done

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.