tldr/pages/common/7z.md

24 lines
430 B
Markdown
Raw Normal View History

2016-02-22 21:50:05 +00:00
# 7z
> A file archiver with high compression ratio.
- Archive a file or folder:
2016-02-22 21:50:05 +00:00
`7z a {{compressed.7z}} {{path/to/file}}`
2016-02-22 21:50:05 +00:00
- Extract an existing 7z file with original directory structure:
2016-02-22 21:50:05 +00:00
`7z x {{compressed}}`
2016-02-22 21:50:05 +00:00
- Archive using a specific archive type:
2016-02-22 21:50:05 +00:00
`7z a -t{{zip|gzip|bzip2|tar|...}} {{compressed}} {{path/to/file}}`
- List available archive types:
`7z i`
2016-02-22 21:50:05 +00:00
- List the contents of an archive file:
2016-02-22 21:50:05 +00:00
`7z l {{compressed}}`