$ bzcat huge_file.bz2 | ./my_program
Or, just to read it on the screen:
$ bzcat huge_file.bz2 | more
To read files in a 7z format using a cat fashion stuff (no, 7zcat doesn't exist, as far as I know) use:
7z x -so even_bigger_file.7z | ./my_program
Some interesting and useful stuff I always try to remember...
$ bzcat huge_file.bz2 | ./my_program
$ bzcat huge_file.bz2 | more
7z x -so even_bigger_file.7z | ./my_program
1 comment:
the 7zip one was useful. I was looking for a 7zcat. Thanks :)
Post a Comment