Latest web development tutorials

Linux bunzip2 command

Linux command Daquan Linux command Daquan

Linux bunzip2 command is the solution .bz2 file compression program.

bunzip2 can decompress .bz2 compressed file format. bunzip2 is actually a symbolic link bzip2, implementation bunzip2 with bzip2 -d same effect.

Syntax: bunzip2 [-fkLsvV] [. Bz2 archive]

Parameters:

  • When the -f or --force decompress, if the output file with the same name as an existing file, the default will not overwrite the existing file. To override, use this parameter.
  • -k or --keep after decompression, the default will delete the original archive. To retain the compressed file, use this parameter.
  • -s or --small reduce program execution time, memory usage.
  • -v or --verbose solution compressed file to display detailed information.
  • -l, - license, -V or --version display version information.

Examples

Decompress .bz2 files

# bunzip2 -v temp.bz2 //解压文件显示详细处理信息

Linux command Daquan Linux command Daquan