Linux Commands Helper
💬 Your AI-powered Linux assistant
zipinfo Command - Show Information About ZIP Archives
The zipinfo command is used to display detailed information about the contents of ZIP archives, including file names, sizes, compression ratios, and timestamps.
Syntax
zipinfo [options] archive.zip
Examples
zipinfo files.zip
Show a summary of the contents of files.zip
.
zipinfo -l files.zip
Show detailed (long) listing of the archive contents.
zipinfo -m files.zip
Show only the archive member (file) names.
Notes
- zipinfo is part of the
unzip
package on most Linux distributions. - Useful for inspecting ZIP archives without extracting them.
- Supports various output formats for different needs.