*: path/to/everything (#9589)

This commit is contained in:
pixel
2022-12-04 10:12:49 +01:00
committed by GitHub
parent ab7a36fbe6
commit 0d99563193
61 changed files with 147 additions and 147 deletions

View File

@@ -5,20 +5,20 @@
- Compress a file into a new file with the `.zst` suffix:
`zstd {{file}}`
`zstd {{path/to/file}}`
- Decompress a file:
`zstd -d {{file}}.zst`
`zstd -d {{path/to/file}}.zst`
- Decompress to `stdout`:
`zstd -dc {{file}}.zst`
`zstd -dc {{path/to/file}}.zst`
- Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default:
`zstd -{{level}} {{file}}`
`zstd -{{level}} {{path/to/file}}`
- Unlock higher compression levels (up to 22) using more memory (both for compression and decompression):
`zstd --ultra -{{level}} {{file}}`
`zstd --ultra -{{level}} {{path/to/file}}`