|
|
Compress / uncompress files - Linux
|
Views : 418
|
|
Tagged in : Linux
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Compress / uncompress files
To compressing a single file:
gzip file
To decompress it:
gunzip file.gz
To compress a directory:
Compressing
tar czf aga.tar.gz directory
Listing
tar tzf aga.tar.gz
Uncompressing
tar xf aga.tar directory
.zip files:
zip -r archivename directories files
unzip -l archivename
unzip archivename
|
|
By Sanju, On - 2009-11-13 |
|
|
|