Skip to content

Instantly share code, notes, and snippets.

@bmaingret
Last active December 16, 2015 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmaingret/5402111 to your computer and use it in GitHub Desktop.
Save bmaingret/5402111 to your computer and use it in GitHub Desktop.
Bash script - saving output to input file for commands like iconv
for file in *.php
do
iconv -f cp1251 -t utf8 -o "$file.new" "$file" &&
mv -f "$file.new" "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment