Skip to content

Instantly share code, notes, and snippets.

@zyouyowa
Created May 23, 2017 07:52
Show Gist options
  • Save zyouyowa/caf207a385ab461d3a9ed17da3608079 to your computer and use it in GitHub Desktop.
Save zyouyowa/caf207a385ab461d3a9ed17da3608079 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Example:
# ./sjis2utf8.sh sample8th/*.asm
for i in $@; do
echo $i
iconv -f SJIS -t UTF8 $i > tmp.sh
cp tmp.sh $i
rm tmp.sh
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment