1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 13:35:25 +02:00
tldr/pages/common/p7zip.md
Yoshikage Kira 15c8243194
p7zip: fix typo for --keep flag (#16861)
Fix the typo for keep flag for p7zip
2025-06-15 06:39:32 +03:00

695 B

p7zip

Wrapper of 7-Zip file archiver with high compression ratio. Internally executes either 7za or 7zr command. More information: https://p7zip.sourceforge.net.

  • Archive a file, replacing it with a 7zipped compressed version:

p7zip {{path/to/file}}

  • Archive a file keeping the input file:

p7zip {{[-k|--keep]}} {{path/to/file}}

  • Decompress a file, replacing it with the original uncompressed version:

p7zip {{[-d|--decompress]}} {{compressed.ext}}.7z

  • Decompress a file keeping the input file:

p7zip {{[-d|--decompress]}} {{[-k|--keep]}} {{compressed.ext}}.7z

  • Skip some checks and force compression or decompression:

p7zip {{[-f|--force]}} {{path/to/file}}