/ Published in: Bash
Expand |
Embed | Plain Text
# tar and gzip some files tar -zcvf output.tar.gz input_folder # untar and gunzip a file tar xvfz /some_files.tar.gz
You need to login to post a comment.
jturmel on 08/06/10
1 person have marked this snippet as a favorite
# tar and gzip some files tar -zcvf output.tar.gz input_folder # untar and gunzip a file tar xvfz /some_files.tar.gz
You need to login to post a comment.