Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Please completely delte my MySpace Profile with all information. I do understand that this will be permanent...
- Thank you! This was very helpful.
- Opps I didn't see lift chair... "The 'gcc compiler' is installed when one installs 'XcodeTools' (via the 'XcodeTools.mpkg' file) from the installation CD (if...
- Sorry if i am repeating anyone but I know if you have mac 10.4.X then on the install disk you can find a copy of xcode...
- ok
Tech-Recipes
Cookbook of Tech Tutorials
Compressed UNIX tar archives (typically tar.gz or .tgz extensions) can be extracted in a single command. This is faster and works with less disk space available.
To extract the compressed tar archive target.tar.gz into the current working directory with:
gzip -dc target.tar.gz | tar ... Continue reading »
To extract the compressed tar archive target.tar.gz into the current working directory with:
gzip -dc target.tar.gz | tar ... Continue reading »
9 months ago
# tar xvzf target.tar.gz
9 months ago
Should be noted that 'j' in place of 'z' in your command will extract a bz2 archived tar file. J. Really. I guess all the appropriate letters were on vacation.