Linux bunzip2Command
Linux Command大全
Linux bunzip2Command is .bz2File Decompression Program.
bunzip2Can decompress .bz2Formatted compressed file. bunzip2Actually bzip2Symbolic link, execute bunzip2With bzip2 -d effect is the same.
Syntax:bunzip2 [-fkLsvV][.bz2Compressed File]
Parameter:
- -f or--force When decompressing, if the output file has the same name as the existing file, the existing file is not covered by default. If you want to overwrite, please use this parameter.
- -k or--keep After decompression, the original compressed file is set to be deleted. If you want to keep the compressed file, please use this parameter.
- -s or--small Reduce the memory usage of the program during execution.
- -v or--verbose Unzip files, show detailed information.
- -L,--license,-V or--version Show Version Information.
Online Examples
Unzip .bz2File
# bunzip2 -v temp.bz2 //Unzip File Shows Detailed Processing Information
Linux Command大全