Skip to content

Instantly share code, notes, and snippets.

@attilahorvath
Last active August 29, 2015 14:17
Show Gist options
  • Save attilahorvath/997850d1ea8fdcf9857d to your computer and use it in GitHub Desktop.
Save attilahorvath/997850d1ea8fdcf9857d to your computer and use it in GitHub Desktop.
Tar compress/extract directory
# compress
tar -czvf archive.tar.gz directory
# extract
tar -xzvf archive.tar.gz
# flags:
# (c)reate
# e(x)tract
# use g(z)ip
# (v)erbosely
# to/from (f)ile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment