Merge branch 'dev' into compressionFlow
This commit is contained in:
+1
-1
@@ -136,7 +136,7 @@ zstd-nogz : LZMA_MSG := $(NO_LZMA_MSG)
|
|||||||
xzstd : CPPFLAGS += $(ZLIBCPP) $(LZMACPP)
|
xzstd : CPPFLAGS += $(ZLIBCPP) $(LZMACPP)
|
||||||
xzstd : LDFLAGS += $(ZLIBLD) $(LZMALD)
|
xzstd : LDFLAGS += $(ZLIBLD) $(LZMALD)
|
||||||
zstd zstd-nogz xzstd : CPPFLAGS += -DZSTD_LEGACY_SUPPORT=$(ZSTD_LEGACY_SUPPORT)
|
zstd zstd-nogz xzstd : CPPFLAGS += -DZSTD_LEGACY_SUPPORT=$(ZSTD_LEGACY_SUPPORT)
|
||||||
zstd zstd-nogz xzstd : $(ZSTDLIB_OBJ) zstdcli.o fileio.o bench.o datagen.o dibio.o
|
zstd zstd-nogz xzstd : $(ZSTDLIB_FILES) zstdcli.o fileio.o bench.o datagen.o dibio.o
|
||||||
@echo "$(THREAD_MSG)"
|
@echo "$(THREAD_MSG)"
|
||||||
@echo "$(ZLIB_MSG)"
|
@echo "$(ZLIB_MSG)"
|
||||||
@echo "$(LZMA_MSG)"
|
@echo "$(LZMA_MSG)"
|
||||||
|
|||||||
+5
-2
@@ -2,12 +2,15 @@
|
|||||||
.TH "ZSTD" "1" "April 2017" "zstd 1.1.5" "User Commands"
|
.TH "ZSTD" "1" "April 2017" "zstd 1.1.5" "User Commands"
|
||||||
.
|
.
|
||||||
.SH "NAME"
|
.SH "NAME"
|
||||||
\fBzstd\fR \- zstd, unzstd, zstdcat \- Compress or decompress \.zst files
|
\fBzstd\fR \- zstd, zstdmt, unzstd, zstdcat \- Compress or decompress \.zst files
|
||||||
.
|
.
|
||||||
.SH "SYNOPSIS"
|
.SH "SYNOPSIS"
|
||||||
\fBzstd\fR [\fIOPTIONS\fR] [\-|<INPUT\-FILE>] [\-o <OUTPUT\-FILE>]
|
\fBzstd\fR [\fIOPTIONS\fR] [\-|<INPUT\-FILE>] [\-o <OUTPUT\-FILE>]
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
|
\fBzstdmt\fR is equivalent to \fBzstd \-T0\fR
|
||||||
|
.
|
||||||
|
.P
|
||||||
\fBunzstd\fR is equivalent to \fBzstd \-d\fR
|
\fBunzstd\fR is equivalent to \fBzstd \-d\fR
|
||||||
.
|
.
|
||||||
.P
|
.P
|
||||||
@@ -98,7 +101,7 @@ unlocks high compression levels 20+ (maximum 22), using a lot more memory\. Note
|
|||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-T#\fR
|
\fB\-T#\fR
|
||||||
Compress using # threads (default: 1)\. This modifier is only available if \fBzstd\fR was compiled with multithreading support\.
|
Compress using # threads (default: 1)\. If \fB#\fR is 0, attempt to detect the number of physical CPU cores and compress with that many threads\. This modified does nothing if \fBzstd\fR was compiled without multithread support\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-D file\fR
|
\fB\-D file\fR
|
||||||
|
|||||||
+7
-3
@@ -1,11 +1,13 @@
|
|||||||
zstd(1) -- zstd, unzstd, zstdcat - Compress or decompress .zst files
|
zstd(1) -- zstd, zstdmt, unzstd, zstdcat - Compress or decompress .zst files
|
||||||
====================================================================
|
============================================================================
|
||||||
|
|
||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
|
|
||||||
`zstd` [*OPTIONS*] [-|<INPUT-FILE>] [-o <OUTPUT-FILE>]
|
`zstd` [*OPTIONS*] [-|<INPUT-FILE>] [-o <OUTPUT-FILE>]
|
||||||
|
|
||||||
|
`zstdmt` is equivalent to `zstd -T0`
|
||||||
|
|
||||||
`unzstd` is equivalent to `zstd -d`
|
`unzstd` is equivalent to `zstd -d`
|
||||||
|
|
||||||
`zstdcat` is equivalent to `zstd -dcf`
|
`zstdcat` is equivalent to `zstd -dcf`
|
||||||
@@ -101,7 +103,9 @@ the last one takes effect.
|
|||||||
Note that decompression will also require more memory when using these levels.
|
Note that decompression will also require more memory when using these levels.
|
||||||
* `-T#`:
|
* `-T#`:
|
||||||
Compress using # threads (default: 1).
|
Compress using # threads (default: 1).
|
||||||
This modifier is only available if `zstd` was compiled with multithreading support.
|
If `#` is 0, attempt to detect the number of physical CPU cores and compress with
|
||||||
|
that many threads.
|
||||||
|
This modified does nothing if `zstd` was compiled without multithread support.
|
||||||
* `-D file`:
|
* `-D file`:
|
||||||
use `file` as Dictionary to compress or decompress FILE(s)
|
use `file` as Dictionary to compress or decompress FILE(s)
|
||||||
* `--nodictID`:
|
* `--nodictID`:
|
||||||
|
|||||||
Reference in New Issue
Block a user