Last active
December 27, 2015 19:29
-
-
Save michaelminter/7377671 to your computer and use it in GitHub Desktop.
tar a directory # gzip, gunzip, linux, command line, mac
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
| # -z: Compress archive using gzip program | |
| # -c: Create archive | |
| # -v: Verbose i.e display progress while creating archive | |
| # -f: Archive File nam | |
| tar -zcvf prog-1-jan-2005.tar.gz /home/jerry/prog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment