Skip to content

Instantly share code, notes, and snippets.

@hardlianotion
Created December 6, 2021 10:19
Show Gist options
  • Save hardlianotion/32baf8b4ab53d364f84a568ebfc1dd42 to your computer and use it in GitHub Desktop.
Save hardlianotion/32baf8b4ab53d364f84a568ebfc1dd42 to your computer and use it in GitHub Desktop.
my typical tar usage
Compressing with tar: `tar -cvf <archive-name> <file-or-dir-1> <file-or-dir-2> ... <file-or-dir-n>
* c - compress
* v - view
* f - specify archive name
Decompressing the tar: `tar -xvf <archive-name>`
* x - extract
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment