How to Decompress .tar.bz2 File

Normally, I would bunzip the file first, then untar it next. But I found something after googling for a shortcut: it can all be done with just one tar command. $ tar -xjvf example.tar.bz2 Notice that, we use j flag to decompress bzip2 file and z flag for gzip file. 馃檪

April 18, 2006 路 1 min 路 51 words 路 kenno

How to Decompress a bzip2 File

bunzip -v exampleFile.bz2 or bzip2 -dv exampleFile.bz2 bzip2 -h man bzip2 bzip2 homepage

April 4, 2006 路 1 min 路 13 words 路 kenno