|
Tools Disclaimer
Request Tool Development
How to Decompress Files
There are many different users who contribute to this Library. As
such, there are several different ways of packaging a tool, several ways of
compressing the files. There are three common formats, .zip, .tar.gz, and .tar.Z.
WinZip can be used to "unzip" these files.
Or the following UNIX commands can be used:
For .tar files
tar -xvf filename.tar
For .tar.gz files
gunzip filename.tar.gz -then- tar -xvf filename.tar
For .tar.Z files
zcat filename.tar.Z | tar -xvf
|