Skip to content

Instantly share code, notes, and snippets.

@toshihikoyanase
Created August 13, 2014 16:27
Show Gist options
  • Save toshihikoyanase/e8c30a340e5d5fd7ac44 to your computer and use it in GitHub Desktop.
Save toshihikoyanase/e8c30a340e5d5fd7ac44 to your computer and use it in GitHub Desktop.
mkdir tmp
for f in *b.zip
do
echo $f
pushd tmp
unzip ../$f
popd
done
mkdir utf8
for i in $(seq -w 1 47)
do
iconv -f shift-jis -t utf-8 ./tmp/${i}_2012.csv > ./utf8/${i}_2012.csv
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment