2020-01-30 23:01:31 +11:00
|
|
|
# p7zip
|
|
|
|
|
|
|
|
> Wrapper of 7-Zip file archiver with high compression ratio.
|
|
|
|
> Internally executes either 7za or 7zr command.
|
2024-10-12 10:02:00 +02:00
|
|
|
> More information: <https://p7zip.sourceforge.net>.
|
2020-01-30 23:01:31 +11:00
|
|
|
|
|
|
|
- Archive a file, replacing it with a 7zipped compressed version:
|
|
|
|
|
|
|
|
`p7zip {{path/to/file}}`
|
|
|
|
|
|
|
|
- Archive a file keeping the input file:
|
|
|
|
|
2025-06-15 03:39:32 +00:00
|
|
|
`p7zip {{[-k|--keep]}} {{path/to/file}}`
|
2020-01-30 23:01:31 +11:00
|
|
|
|
|
|
|
- Decompress a file, replacing it with the original uncompressed version:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`p7zip {{[-d|--decompress]}} {{compressed.ext}}.7z`
|
2020-01-30 23:01:31 +11:00
|
|
|
|
|
|
|
- Decompress a file keeping the input file:
|
|
|
|
|
2025-06-15 03:39:32 +00:00
|
|
|
`p7zip {{[-d|--decompress]}} {{[-k|--keep]}} {{compressed.ext}}.7z`
|
2020-01-30 23:01:31 +11:00
|
|
|
|
|
|
|
- Skip some checks and force compression or decompression:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`p7zip {{[-f|--force]}} {{path/to/file}}`
|