Linux Command
uncompress
Used to decompress .Z files
Supplementary instructions
uncompress command is used to decompress the ".Z" compressed package generated by the compress command.
grammar
uncompress(option)(parameter)
Options
-f: Do not prompt the user and force the target file to be overwritten;
-c: Send the results to standard output, no files are changed;
-r: Recursive operation mode.
Parameters
File: Specify the ".Z" compressed package to be compressed.
Example
First create a .Z compressed file
compress FileName
Unzip:
uncompress FileName.Z


