Created
June 18, 2015 07:23
-
-
Save vlrmprjct/f30e386d913dccfc9a7c to your computer and use it in GitHub Desktop.
tar and untardirectory
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
# tar directory | |
tar -czvf Output_File_Name.tar.gz Directory_Name | |
tar -zcvf demo.tar.gz demo | |
# which will create a tar file named "demo.tar.gz" | |
# to untar directory | |
tar -xzvf Input_File_Name.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment