in data exploration, when you have a lot of zip files, you need a way to look at the cotents with extracting each zip file.
- zcat file.log.zip | less
- unzip -p archive.zip file1.txt | less
OR the best way
- vim archive.zip
A few Day-to-Day life tricks of Linux.
in data exploration, when you have a lot of zip files, you need a way to look at the cotents with extracting each zip file.