Linux "znew" Command Line Options and Examples
recompress .Z files to .gz files

Znew recompresses files from .Z (compress) format to .gz (gzip) format.


Usage:

znew [ -ftv9PK] [ name.Z ... ]






Command Line Options:

-f
Force recompression from .Z to .gz format even if a .gz file already exists
znew -f ...
-t
Tests the new files before deleting originals.
znew -t ...
-v
Verbose. Display the name and percentage reduction for each file compressed.
znew -v ...
-9
Use the slowest compression method (optimal compression).
znew -9 ...
-P
Use pipes for the conversion to reduce disk space usage.
znew -P ...
-K
Keep a .Z file when it is smaller than the .gz file; implies -t.
znew -K ...