Tar things
-
To see the content
BASHtar -tf your_file.tar.gz -
To extract .tar
BASHtar -xvf your_file.tar -
Compress .tar
BASHtar -cvf your_file.tar /the/file/or/directory/path -
To extract .tar.gz
BASHtar -zxvf your_file.tar.gz -
To compress as .tar.gz
BASHtar -zcvf your_file.tar.gz /the/file/or/directory/path
Tips:
BASH
-t check-f file_name-z use gzip-c/-x compress/extract