Skip to content

Instantly share code, notes, and snippets.

@magichim
Last active September 25, 2018 03:45
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 magichim/b4fd6549171a5929ca929807760a2529 to your computer and use it in GitHub Desktop.
Save magichim/b4fd6549171a5929ca929807760a2529 to your computer and use it in GitHub Desktop.
Convert EUC-KR Assembly File Encode As UTF-8
#!/bin/bash
for file in `find . -name '*.asm'`;
do
iconv -f euc-kr -t utf-8 $file > $file.new && mv -f $file.new $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment