2016-02-22 21:50:45 +00:00
|
|
|
# 7zr
|
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
> File archiver with a high compression ratio.
|
|
|
|
> Similar to `7z` except that it only supports `.7z` files.
|
|
|
|
> More information: <https://www.7-zip.org>.
|
2016-02-22 21:50:45 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- [a]rchive a file or directory:
|
2016-02-22 21:50:45 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7zr a {{path/to/archive.7z}} {{path/to/file_or_directory}}`
|
2016-02-22 21:50:45 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
- Encrypt an existing archive (including file names):
|
2016-02-22 21:50:45 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7zr a {{path/to/encrypted.7z}} -p{{password}} -mhe=on {{path/to/archive.7z}}`
|
2016-02-22 21:50:45 +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:45 +00:00
|
|
|
|
2021-05-01 19:10:54 +01:00
|
|
|
`7zr x {{path/to/archive.7z}}`
|
|
|
|
|
|
|
|
- E[x]tract an archive to a specific directory:
|
|
|
|
|
|
|
|
`7zr x {{path/to/archive.7z}} -o{{path/to/output}}`
|
|
|
|
|
|
|
|
- E[x]tract an archive to stdout:
|
|
|
|
|
|
|
|
`7zr x {{path/to/archive.7z}} -so`
|
|
|
|
|
|
|
|
- [l]ist the contents of an archive:
|
|
|
|
|
|
|
|
`7zr l {{path/to/archive.7z}}`
|
|
|
|
|
|
|
|
- List available archive types:
|
|
|
|
|
|
|
|
`7zr i`
|