Last active
September 25, 2018 03:45
-
-
Save magichim/b4fd6549171a5929ca929807760a2529 to your computer and use it in GitHub Desktop.
Convert EUC-KR Assembly File Encode As UTF-8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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