zoukankan      html  css  js  c++  java
  • 打开.bz2文件 zhumao

    bzip2 and bunzip: Files With .bz2 Extensions

    by Brent Fox
    Last Modified: Wednesday, May 19, 2004

    Introduction
        bzip2 and bunzip2 are file compression and decompression utilities. The bzip2 and bunzip2 utilities are newer than gzip and gunzip and are not as common yet, but they are rapidly gaining popularity. The bzip2 utility is capable of greater compression ratios than gzip. Therefore, a bzip2 file can be 10-20% smaller than a gzip version of the same file. Usually, files that have been compressed by bzip2 will have a .bz2 extension.

    Uncompressing a bzip2 File Using bunzip2
        To uncompress a bzip2 file, execute the following command:
    bunzip2 filename.txt.bz2     (where filename.txt.bz2 is the name of the file you wish to uncompress)
    The result of this operation is a file called filename.txt. By default, bunzip2 will delete the filename.txt.bz2 file.

    Compressing a File Using bzip2
        To compress a file using bzip2, execute the following command:
    bzip2 filename.txt     (where filename.txt is the name of the file you wish to compress)
    The result of this operation is a file called filename.txt.bz2. By default, bzip2 will delete the filename.txt file.


    from http://www.linuxheadquarters.com/howto/basic/bz2.shtml
  • 相关阅读:
    POJ--3667 Hotel
    Dragon Balls
    Popular Cows
    Tunnel Warfare [HDU--1540]
    CompletableFuture
    Future<V>
    分布式架构知识体系
    异步I/O和非阻塞I/O(轮询)
    同步异步阻塞非阻塞及并发级别
    volatile
  • 原文地址:https://www.cnblogs.com/zhumao/p/206911.html
Copyright © 2011-2022 走看看