Posted by : gon in (respaldo)

Solve problem with diferent encoding on text-files

Tagged Under : , ,

  • Install recode package:
sudo apt-get install recode
  • To re-encode from iso-8859-1 to utf8:
recode latin1..utf8
  • To recode many text-files massively:
find . -name "*.txt" -exec recode latin1..utf8 "{}" \;

Comments:

Make a comment