Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pages/common/zstd.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@
- Unlock higher compression levels (up to 22) using more memory (both for compression and decompression):

`zstd --ultra -{{level}} {{path/to/file}}`

- Set the number of working threads to the number of physical CPU cores:

`zstd {{[-T|--threads]}} 0`
2 changes: 1 addition & 1 deletion pages/common/zstdcat.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# zstdcat

> This command is an alias of `zstd --decompress --stdout`.
> This command is an alias of `zstd --decompress --stdout --force`.

- View documentation for the original command:

Expand Down
2 changes: 1 addition & 1 deletion pages/common/zstdmt.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# zstdmt

> This command is an alias of `zstd --threads 0` (which sets the number of working threads to the number of physical CPU cores).
> This command is an alias of `zstd --threads 0`.

- View documentation for the original command:

Expand Down
Loading