Compression


tar

Create

tar -cvf archive.tar file1 file2 file3

Create gzip-compressed

tar -czvf archive.tar.gz file1 file2 file3

Create gzip-compressed, password-protected

tar -czvf archive.tar.gz file1 file2
gpg -c archive.tar.gz

Extract all

tar -xvf archive.tar

List all

tar -tf archive.tar

* t for something... I'm not actually sure what


CategoryRicottone