Skip to content

Instantly share code, notes, and snippets.

@dlanileonardo
Last active December 22, 2015 23:09
Show Gist options
  • Save dlanileonardo/6545368 to your computer and use it in GitHub Desktop.
Save dlanileonardo/6545368 to your computer and use it in GitHub Desktop.
Codificação de Arquivos via Bash
# Checando codificação de arquivos:
find . -iname "*.phtml" | while read linha; do file -i $linha; done
# Conversão em Lote
find . -iname "*.phtml" | while read linha; do iconv --from-code=ISO-8859-1 --to-code=UTF-8 $linha > $linha.new; mv $linha.new $linha; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment