thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Thu Aug 04, 2005 11:28 am Post subject: Tar |
|
|
tar [-C DIR] [-xzvf] [tarfile]
-C First go to specified dir before processing
-x Extract
-z If zip file: firt unzip. Zip files are mostley identified by .tgz of .gz
-v Verbose: display wat tar is doing
-f File: specify the file to extract
Example:
user@host:~#tar -C extractdir -xzvf sample.tar.gz |
|