1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 22:38:23 +01:00
tldr/pages/common/7z.md
Andrik Albuquerque 25791e0037 7z: apply standard syntax for options (#2935)
Apply standard syntax for option -m and remove spaces from Italian version.
2019-04-19 14:15:07 +02:00

708 B

7z

A file archiver with high compression ratio. Homepage: https://www.7-zip.org/.

  • Archive a file or directory:

7z a {{archived.7z}} {{path/to/file_or_directory}}

  • Encrypt an existing archive (including headers):

7z a {{encrypted.7z}} -p{{password}} -mhe=on {{archived.7z}}

  • Extract an existing 7z file with original directory structure:

7z x {{archived.7z}}

  • Extract an archive with user-defined output path:

7z x {{archived.7z}} -o{{path/to/output}}

  • Archive using a specific archive type:

7z a -t{{zip|gzip|bzip2|tar}} {{archived.7z}} {{path/to/file_or_directory}}

  • List available archive types:

7z i

  • List the contents of an archive file:

7z l {{archived.7z}}