Used to decompress .Z files.
The uncompress command is used to decompress ".Z" archives generated by the compress command.
uncompress (option) (parameter)
-f: Overwrite the target file without prompting the user;
-c: Send the result to standard output; no files are changed;
-r: Recursive operation mode.
File: Specifies the ".Z" archive to be decompressed.
First, create a .Z compressed file:
compress FileName
Decompress:
uncompress FileName.Z