From 25a2a44a01f6b378b723845ee47b5cd9b65cd839 Mon Sep 17 00:00:00 2001 From: Alex Martens Date: Sat, 20 Aug 2022 15:33:05 -0700 Subject: [PATCH] unzstd: add page (#8385) --- pages/common/unzstd.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/unzstd.md diff --git a/pages/common/unzstd.md b/pages/common/unzstd.md new file mode 100644 index 0000000000..5770b7f64c --- /dev/null +++ b/pages/common/unzstd.md @@ -0,0 +1,16 @@ +# unzstd + +> Decompress files with Zstandard compression. +> More information: . + +- Decompress files: + +`unzstd {{path/to/file1.ztd path/to/file2.ztd ...}}` + +- Decompress a file into a specific output file: + +`unzstd {{path/to/compressed.ztd}} -o {{path/to/extracted_file}}` + +- Display information about a compressed file: + +`unzip --list {{path/to/file.zst}}`