Tuesday, April 30, 2013

Compress / Uncompress

compress tar.gz
tar -pczf try.tar.gz try1/

uncompress tar.gz

 tar -zxvf try.tar.gz

Compress gz

gzip file

Uncompress gz

gunzip -c file.gz > newfile

OR

gzip -d  file.gz > newfile

No comments:

Post a Comment