-
-
Save madsonic/1f19b5a859d3c24e3fad0a96c2a9c048 to your computer and use it in GitHub Desktop.
compressions
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 file into gzip | |
| tar --create --gzip --verbose --file <output file path> <input file path> | |
| tar -czvf <output file path> <input file path> | |
| # extract | |
| tar -xzvf <file path> | |
| # gzip option can be changed to use different compression algo | |
| # https://www.howtogeek.com/248780/how-to-compress-and-extract-files-using-the-tar-command-on-linux/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment