Skip to content

Instantly share code, notes, and snippets.

@crichardson9
Created November 20, 2017 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crichardson9/cbecb7a5b42c13926dd8034554009d61 to your computer and use it in GitHub Desktop.
Save crichardson9/cbecb7a5b42c13926dd8034554009d61 to your computer and use it in GitHub Desktop.
Create TAR
# Create
tar -czf archive.tar.gz mydir/ --exclude='file1'
tar -czvf archive.tar.gz /home/username/public_html/
--exclude='/home/username/public_html/media'
--exclude='/home/username/public_html/var'
# Extract
tar -xzf foo.tar.gz
extract gzipped foo.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment