Decompress Bzip2 File
Tagged with: bzip, bzip2, command, compress, decompress, filler, Linux, tar, zip
Saturday, September 13th, 2008 11:40 PM
Decompress a compressed tar archive in bzip2
tar -xvfj archive.tar.bz2tar -xvfj archive.tar.bz2
Decompress a compressed tar archive in bzip2
tar -xvfj archive.tar.bz2tar -xvfj archive.tar.bz2
create a tarball compressed into bzip2
tar -cvfj archive.tar.bz2 dir
How to read a big text file that is tarballed - without extracting the whole thing…
bzcat enwiki-20070802-pages-articles.xml.bz2 | head -10
[tags]tar,zip,bzip,text,read,wikipedia[/tags]