How can I view the contents of configs.tbz in my save floppy or thumb drive? I tried bzip but it seems to be confused by the "t" in /tbz.
pelican
Printable View
How can I view the contents of configs.tbz in my save floppy or thumb drive? I tried bzip but it seems to be confused by the "t" in /tbz.
pelican
in order to view the archive contents,Code:bzip2 -dc < config.tbz | tar tvf -
in order to extract.Code:bzip2 -dc < config.tbz | tar xvf -
----------
Erh...actually that's the old way, recent tars should directly support bzip compression through the 'j' flag, so that'd beCode:tar -tjvf config.tbz
Thanks Baldyeti - your scripts work perfectly.
Nice name ;-)
Pelican