Created
November 1, 2012 06:23
-
-
Save douglasmiranda/3992171 to your computer and use it in GitHub Desktop.
Compress/Extract Files with 'tar' command - Terminal
This file contains 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
# Compress Files | |
tar -zcvf foo.tar.gz /home/douglas/foo | |
# Extract files | |
tar -zxvf foo.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment