Extract list of file names in a zip archive when `unzip -l`

The easiest way to do this is to use the following command:

unzip -Z -1 archive.zip

or

zipinfo -1 archive.zip

This will list only the file names, one on each line.

The two commands are exactly equivalent. The -Z option tells unzip to treat the rest of the options as zipinfo options. See the man pages for unzip and zipinfo.

Leave a Comment

tech