1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/common/7zr.md
Alexandre ZANNI eb404a4285
7z{,a,r}: update French translation + fixes (#14783)
* 7z: fr translation, add missing command + fix tense

* 7za: fr translation, add missing command

* 7zr: fr translation, add missing command

* 7za: copy command syntax in English version
2024-12-07 19:16:55 +01:00

33 lines
1 KiB
Markdown

# 7zr
> Un archiveur de fichiers avec un haut taux de compression.
> Similaire à `7z` sauf qu'il ne supporte que les fichiers 7z.
> Plus d'informations : <https://manned.org/7zr>.
- Compresse un fichier ou un dossier :
`7zr a {{chemin/vers/archive.7z}} {{chemin/vers/le/fichier_ou_dossier}}`
- Chiffre une archive existante (en incluant les en-têtes) :
`7zr a {{chemin/vers/archive_chiffree.7z}} -p{{password}} -mhe={{on}} {{chemin/vers/archive.7z}}`
- Extrait une archive en conservant l'arborescence des fichiers :
`7zr x {{chemin/vers/archive.7z}}`
- Extrait une archive vers un dossier specifique :
`7zr x {{chemin/vers/archive.7z}} -o{{chemin/vers/la/sortie}}`
- Extrait une archive vers sortie standard :
`7zr x {{chemin/vers/archive.7z}} -so`
- Liste le contenu d'une archive :
`7zr l {{chemin/vers/archive.7z}}`
- Définit le niveau de compression (plus il est élevé, plus la compression est importante, mais plus elle est lente) :
`7zr a {{chemin/vers/archive.7z}} -mx={{0|1|3|5|7|9}} {{chemin/vers/fichier_ou_dossier}}`