mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 05:41:49 +00:00
18 lines
424 B
Plaintext
18 lines
424 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# zipinfo
|
|
|
|
> List detailed information about the contents of a Zip file.
|
|
> More information: <https://manned.org/zipinfo>.
|
|
|
|
- List all files in a Zip file in long format (permissions, ownership, size, and modification date):
|
|
|
|
`zipinfo {{path/to/archive.zip}}`
|
|
|
|
- List all files in a Zip file:
|
|
|
|
`zipinfo -1 {{path/to/archive.zip}}`
|