tar command lets you compress -c or extract -x the file.
You can do man tar, to read manual on tar command
for extracting .tar command use;
tar -xvf file.tar
-x:extracting
-v:listing the file(s) being extracted
-f specifies name of file.
tar -xzvf file.tar.gz
tar -xjvf file.tar.bz2 Use This for detailed information.
Comment