Originally posted by: rmrf
you could also use:
tar -jxvf filename.tar.bz2
Originally posted by: n0cmonkey
Originally posted by: rmrf
you could also use:
tar -jxvf filename.tar.bz2
I think that's a GNUism, and unstandard.
bunzip2 file.tar.bz2 | tar -xvf - should work fine though. I think.![]()
Originally posted by: bersl2
Originally posted by: n0cmonkey
Originally posted by: rmrf
you could also use:
tar -jxvf filename.tar.bz2
I think that's a GNUism, and unstandard.
bunzip2 file.tar.bz2 | tar -xvf - should work fine though. I think.![]()
bunzip2 extracts to stdout? Don't you mean bzcat?