document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. for file in *.txt; do
  2.     iconv -f latin1 -t utf-8 "$file" -o "${file%.txt}.utf8.txt"
  3. done
');