Last active
April 18, 2022 18:30
-
-
Save caffeinetiger/a5ee92828256db37764e29bab827e0c1 to your computer and use it in GitHub Desktop.
[nixCraft - How do I Compress a Whold Linux or UNIX Directory?](https://www.cyberciti.biz/faq/how-do-i-compress-a-whole-linux-or-unix-directory/)
[nixCraft - Linux: tar Extract Files](https://www.cyberciti.biz/faq/tar-extract-linux/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Compress a directory | |
| tar -zcvf archive-name.tar.gz directory-name | |
| # Extract files | |
| tar -xzvf file.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment