From e9997c90d2e744d3968f24cf37051f12f44c8777 Mon Sep 17 00:00:00 2001 From: rilysh Date: Tue, 27 Jun 2023 18:21:31 -0400 Subject: [PATCH] bzip3: add page (#10423) --- pages/common/bzip3.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/bzip3.md diff --git a/pages/common/bzip3.md b/pages/common/bzip3.md new file mode 100644 index 000000000..aedbbda77 --- /dev/null +++ b/pages/common/bzip3.md @@ -0,0 +1,32 @@ +# bzip3 + +> An efficient statistical file compressor. +> More information: . + +- Compress a file: + +`bzip3 {{path/to/file_to_compress}}` + +- Decompress a file: + +`bzip3 -d {{path/to/compressed_file.bz3}}` + +- Decompress a file to standard output: + +`bzip3 -dc {{path/to/compressed_file.bz3}}` + +- Test the integrity of each file inside the archive file: + +`bzip3 --test {{path/to/compressed_file.bz3}}` + +- Show the compression ratio for each file processed with detailed information: + +`bzip3 --verbose {{path/to/compressed_files.bz3}}` + +- Decompress a file overwriting existing files: + +`bzip3 --force {{path/to/compressed_file.bz3}}` + +- Display help: + +`bzip3 -h`