Skip to content

Instantly share code, notes, and snippets.

@vladimir-e
Created June 22, 2013 18:38
Show Gist options
  • Save vladimir-e/5842043 to your computer and use it in GitHub Desktop.
Save vladimir-e/5842043 to your computer and use it in GitHub Desktop.
#compress #tar #archive #linux #console
tar -zcvf archive.tar.gz dir
# -z: Compress archive using gzip program
# -c: Create archive
# -v: Verbose i.e display progress while creating archive
# -f: Archive File name
# Extract
tar -zxvf archive.tar.gz -C dir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment