View list of files in ZIP archive on Linux
The less
utility is capable of peeking into a zip
archive. In fact, if you look at the outputs of unzip -l zipfile
and less zipfile
, you will find them to be identical.
Try unzip -l files.zip | less
Also, See man unzip
for more options
To list zip contents:
zipinfo -1 myzipfile.zip
For detailed output:
zipinfo myzipfile.zip