Linux command
bzip3 命令
网络
复制后可按需替换文件名、目录或参数。
常用示例
Compress
bzip3 [file.txt]
Decompress
bzip3 -d [file.txt.bz3]
Keep
bzip3 -k [file.txt]
Set
bzip3 -b [256] [file.txt]
说明
bzip3 is a compression tool offering better compression ratios than bzip2, gzip, and zstd while maintaining reasonable speed. It uses a more modern algorithm than bzip2 with improved performance. The tool is backward incompatible with bzip2 but provides significantly better compression for most data types.
参数
- -d, --decompress
- Decompress file
- -k, --keep
- Keep original files
- -f, --force
- Overwrite existing files
- -c, --stdout
- Write to standard output
- -b, --block _size_
- Block size in MiB (65-511)
- -j, --jobs _n_
- Number of threads
- -v, --verbose
- Verbose mode
FAQ
What is the bzip3 command used for?
bzip3 is a compression tool offering better compression ratios than bzip2, gzip, and zstd while maintaining reasonable speed. It uses a more modern algorithm than bzip2 with improved performance. The tool is backward incompatible with bzip2 but provides significantly better compression for most data types.
How do I run a basic bzip3 example?
Run `bzip3 [file.txt]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -d, --decompress do in bzip3?
Decompress file