Linux Comm Bunzip2
# Linux bunzip2 Command
[ Linux Command List](#)
The Linux `bunzip2` command is a decompression program for `.bz2` files.
`bunzip2` can decompress files in the `.bz2` format. `bunzip2` is actually a symbolic link to `bzip2`, and executing `bunzip2` has the same effect as `bzip2 -d`.
**Syntax**: `bunzip2 [.bz2 compressed file]`
**Parameters**:
* `-f` or `--force` During decompression, if the output file has the same name as an existing file, the default behavior is not to overwrite the existing file. Use this parameter to force overwriting.
* `-k` or `--keep` After decompression, the original compressed file is deleted by default. Use this parameter to keep the compressed file.
* `-s` or `--small` Reduce the amount of memory used during program execution.
* `-v` or `--verbose` Display detailed information when decompressing files.
* `-L`, `--license`, `-V` or `--version` Display version information.
### Example
Decompress a `.bz2` file
# bunzip2 -v temp.bz2 //Decompress files and display detailed processing information
[ Linux Command List](#)
YouTip