Skip to content

Instantly share code, notes, and snippets.

@seathief
Created July 10, 2013 15:44
Show Gist options
  • Save seathief/5967408 to your computer and use it in GitHub Desktop.
Save seathief/5967408 to your computer and use it in GitHub Desktop.
convert tar.gz to zip in OSX credit from http://stackoverflow.com/questions/6301885/convert-tar-gz-to-zip
#!/bin/sh
# credit from http://stackoverflow.com/questions/6301885/convert-tar-gz-to-zip
for f in *.tar.gz
do
rm -rf ${f%.tar.gz}
mkdir ${f%.tar.gz}
tar xvzf $f -C ${f%.tar.gz}
zip ${f%.tar.gz}.zip -r ${f%.tar.gz}
rm -rf ${f%.tar.gz}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment