Skip to content

Instantly share code, notes, and snippets.

@kambara
Created May 18, 2014 01:15
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 kambara/8aca52da5cb65fb453b3 to your computer and use it in GitHub Desktop.
Save kambara/8aca52da5cb65fb453b3 to your computer and use it in GitHub Desktop.
#!/bin/sh
cd $1
ls -F | grep / |
while read dirname
do
dirname=`echo "$dirname" | sed -e 's/\///'`
echo -----------------------
echo $dirname
if [ -d tmp ]; then
rm -rf tmp/*
else
mkdir tmp
fi
cp -r "${dirname}"/* tmp/
rm tmp/Thumbs.db
convmv -r -f utf8 -t sjis --notest tmp/
cd tmp
zip -r ../"${dirname}".zip *
cd ..
rm -rf tmp
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment