Added zstd notes to the knowledge base

This commit is contained in:
Michele Cereda
2022-04-17 23:38:21 +02:00
parent 30f5e3a77b
commit 2e5e61a254

12
knowledge base/zstd.md Normal file
View File

@@ -0,0 +1,12 @@
# ZSTD
The `zstd`, `zstdmt`, `unzstd`, `zstdcat` utilities compress or decompress `.zst` files.
## TL;DR
```sh
zstd -15 -r --compress --rsyncable "folder" -o "folder.zst"
zstd --test
zstd --list
zstd --decompress
```