zstd: update compression level sentences (#4121)

client-spec/clarity
Yann Collet 2020-06-23 15:25:45 -07:00 committed by GitHub
parent 7a79fa6e21
commit c3699ce546
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -15,10 +15,10 @@
`zstd -dc {{file}}.zst`
- Compress a file, while specifing the compression level (0 being worst, 19 best, and 3 default):
- Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default:
`zstd -{{level}} {{file}}`
- Use more memory (both when compressing and decompressing) to achieve a higher compression ratio:
- Unlock higher compression levels (up to 22) using more memory (both for compression and decompression):
`zstd --ultra -{{level}} {{file}}`