Created
May 26, 2013 10:07
-
-
Save jlyon/5652308 to your computer and use it in GitHub Desktop.
tar, zip, gzip basic linux commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# tar | |
tar cvzf foo.tgz foo | |
tar xvzf foo.tgz | |
# zip | |
zip foo.zip foo | |
unzip foo.gz | |
# gz | |
gunzip foo.gz | |
gzip filename.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment