mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-04-05 06:15:28 +00:00
Minor updates to man pages, lrzip.conf example file.
Update main help screen to include environment settings. Update to respect $TMP environment variable for TMP files. Updated control structure to include tmpdir pointer. Update lrzip.conf parser to respect -U -M options. Update lrzip.conf example to include new parameters. Reorder main Switch loop in main.c for readability. Have MAXRAM and control.window be exclusive. MAXRAM wins. Have UNLIMITED and control.window be exclusive. UNLIMITED wins. Have UNLIMITED and MAXRAM be exclusive. UNLIMITED wins. Corrects heuristic computation in rzip.c which would override MAXRAM or UNLIMITED if control.window set Show heuristically computed control.window when computed. Remove display compression level from control.window verbose output. Update print_verbose format for Testing for incompressible data in stream.c to omit extra \n. Changes by Peter Hyman <pete@peterhyman.com>
This commit is contained in:
parent
98d264fac8
commit
74df2b5973
8 changed files with 210 additions and 103 deletions
|
|
@ -58,7 +58,10 @@ Here is a summary of the options to lrzip\&.
|
|||
\-H display md5 hash integrity information
|
||||
\-c check integrity of file written on decompression
|
||||
\-k keep broken or damaged files
|
||||
|
||||
|
||||
LRZIP=NOCONFIG environment variable setting can be used to bypass lrzip.conf.
|
||||
TMP environment variable will be used for storage of temporary files when needed.
|
||||
TMPDIR may also be stored in lrzip.conf file.
|
||||
If no filenames or "-" is specified, stdin/out will be used (stdin/out is
|
||||
inefficient with lrzip and not recommended usage).
|
||||
|
||||
|
|
@ -68,7 +71,7 @@ inefficient with lrzip and not recommended usage).
|
|||
.PP
|
||||
.SH "OPTIONS"
|
||||
.PP
|
||||
.IP "\fB-h\fP"
|
||||
.IP "\fB-h|-?\fP"
|
||||
Print an options summary page
|
||||
.IP
|
||||
.IP "\fB-V\fP"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,11 @@ beginning with a \fB#\fP or that is blank will be ignored\&.
|
|||
WINDOW = 5
|
||||
# Compression Level 1-9 (7 Default).
|
||||
COMPRESSIONLEVEL = 7
|
||||
# Compression Method, rzip, gzip, bzip2, lzo, or lzma (default).
|
||||
# Unlimited Ram Compression
|
||||
# UNLIMITED = YES
|
||||
# Use Maximum Ram
|
||||
# MAXRAM = YES
|
||||
# Compression Method, rzip, gzip, bzip2, lzo, or lzma (default), zpaq.
|
||||
COMPRESSIONMETHOD = lzma
|
||||
# Test Threshold value 1-10 (2 Default).
|
||||
TESTTHRESHOLD = 2
|
||||
|
|
@ -47,6 +51,9 @@ NICE = 19
|
|||
# this parameter and value are case sensitive
|
||||
# value must be YES to activate
|
||||
# REPLACEFILE = NO
|
||||
|
||||
# Select Temporary Directory when stdin/stdout or Test file is used
|
||||
TMPDIR = /tmp
|
||||
.fi
|
||||
.PP
|
||||
.SH "NOTES"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue