Skip to content

Instantly share code, notes, and snippets.

@douglasmiranda
Created November 1, 2012 06:23
Show Gist options
  • Save douglasmiranda/3992171 to your computer and use it in GitHub Desktop.
Save douglasmiranda/3992171 to your computer and use it in GitHub Desktop.
Compress/Extract Files with 'tar' command - Terminal
# 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