Skip to content

Instantly share code, notes, and snippets.

@mikequentel
Created November 27, 2015 01:44
Show Gist options
  • Save mikequentel/eede4c38e3a09aeb508f to your computer and use it in GitHub Desktop.
Save mikequentel/eede4c38e3a09aeb508f to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ -z $1 ]; then
echo "specify file name"
exit 1
fi
gzip -dc $1 | tar -xvf -
@mikequentel
Copy link
Author

Aids expanding tar.gz or tgz on systems lacking the ability to use syntax tar zxvf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment