2016-02-22 21:50:05 +00:00
|
|
|
# 7z
|
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
> File archiver with a high compression ratio.
|
|
|
|
> More information: <https://www.7-zip.org>.
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- [a]rchive a file or directory:
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7z a {{path/to/archive.7z}} {{path/to/file_or_directory}}`
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- Encrypt an existing archive (including filenames):
|
2018-02-06 18:25:26 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7z a {{path/to/encrypted.7z}} -p{{password}} -mhe=on {{path/to/archive.7z}}`
|
2018-02-06 18:25:26 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- E[x]tract an archive preserving the original directory structure:
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7z x {{path/to/archive.7z}}`
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- E[x]tract an archive to a specific directory:
|
2018-01-18 03:41:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7z x {{path/to/archive.7z}} -o{{path/to/output}}`
|
2018-01-18 03:41:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- E[x]tract an archive to stdout:
|
2019-07-28 11:05:20 +01:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7z x {{path/to/archive.7z}} -so`
|
2019-07-28 11:05:20 +01:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- [a]rchive using a specific archive type:
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-10-18 22:10:17 +01:00
|
|
|
`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{path/to/archive.7z}} {{path/to/file_or_directory}}`
|
2016-02-23 01:00:13 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- [l]ist the contents of an archive:
|
2016-02-23 01:00:13 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7z l {{path/to/archive.7z}}`
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- List available archive types:
|
2016-02-22 21:50:05 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7z i`
|