mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 23:46:00 +02:00
tar: add French translation (#3732)
* tar: add French translation Co-authored-by: Hugo D. (jabesq) <jabesq@gmail.com> * Typo Co-authored-by: Hugo Dupras <jabesq@gmail.com>
This commit is contained in:
parent
9692b7486e
commit
2fc20251a9
1 changed files with 33 additions and 0 deletions
33
pages.fr/common/tar.md
Normal file
33
pages.fr/common/tar.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# tar
|
||||
|
||||
> Utilitaire d'archivage.
|
||||
> Souvent combiné avec une méthode de compression, telle que gzip ou bzip.
|
||||
> Plus d'informations : <https://www.gnu.org/software/tar>.
|
||||
|
||||
- Créer une archive à partir de fichiers :
|
||||
|
||||
`tar cf {{cible.tar}} {{fichier1 fichier2 fichier3}}`
|
||||
|
||||
- Créer une archive gzip :
|
||||
|
||||
`tar czf {{cible.tar.gz}} {{fichier1 fichier2 fichier3}}`
|
||||
|
||||
- Extraie une archive (compressée) dans le dossier courant :
|
||||
|
||||
`tar xf {{source.tar[.gz|.bz2|.xz]}}`
|
||||
|
||||
- Extraie une archive dans un dossier cible :
|
||||
|
||||
`tar xf {{source.tar}} -C {{dossier}}`
|
||||
|
||||
- Créer une archive compressée, en utilisant le suffixe de l'archive pour déterminer le programme de compression :
|
||||
|
||||
`tar caf {{cible.tar.xz}} {{fichier1 fichier2 fichier3}}`
|
||||
|
||||
- Lister le contenu d'une archive tar :
|
||||
|
||||
`tar tvf {{source.tar}}`
|
||||
|
||||
- Extraire les fichiers correspondant au motif :
|
||||
|
||||
`tar xf {{source.tar}} --wildcards {{"*.html"}}`
|
Loading…
Add table
Reference in a new issue