Matt Stegman wrote:
> Quickly, you can do it one of two ways.
> 
> $ bzcat file.tar.bz2 | tar x

No. This will not work: you must tell tar
that it is given a file through standard input
(tar's default input is the tape device, /dev/st0)

The correct command is:

  $ bzcat file.tar.bz2 | tar xf - 


-- 
Jean-Louis Debert        [EMAIL PROTECTED]
74 Annemasse  France
old Linux fan

Reply via email to