mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
ar, arc, arch: add French translation (#8240)
This commit is contained in:
parent
ad38933fbb
commit
09f51537dd
3 changed files with 53 additions and 0 deletions
24
pages.fr/common/ar.md
Normal file
24
pages.fr/common/ar.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# ar
|
||||||
|
|
||||||
|
> Crée, modifie et extrais depuis des archives (`.a`, `.so`, `.o`).
|
||||||
|
> Plus d'informations : <https://manned.org/ar>.
|
||||||
|
|
||||||
|
- Extrais tous les éléments depuis une archive :
|
||||||
|
|
||||||
|
`ar -x {{chemin/vers/archive.a}}`
|
||||||
|
|
||||||
|
- Liste tous les éléments depuis une archive :
|
||||||
|
|
||||||
|
`ar -t {{chemin/vers/archive.a}}`
|
||||||
|
|
||||||
|
- Remplace ou ajoute des fichiers à une archive :
|
||||||
|
|
||||||
|
`ar -r {{chemin/vers/archive.a}} {{chemin/vers/fichier1.o}} {{chemin/vers/fichier2.o}}`
|
||||||
|
|
||||||
|
- Insère un fichier d'indexation (équivalent à `ranlib`) :
|
||||||
|
|
||||||
|
`ar -s {{chemin/vers/archive.a}}`
|
||||||
|
|
||||||
|
- Crée une archive avec des fichiers et un fichier d'indexation qui l'accompagne :
|
||||||
|
|
||||||
|
`ar -rs {{chemin/vers/archive.a}} {{chemin/vers/fichier1.o}} {{chemin/vers/fichier2.o}}`
|
20
pages.fr/common/arc.md
Normal file
20
pages.fr/common/arc.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# arc
|
||||||
|
|
||||||
|
> Arcanist: Une CLI pour Phabricator.
|
||||||
|
> Plus d'informations : <https://secure.phabricator.com/book/phabricator/article/arcanist/>.
|
||||||
|
|
||||||
|
- Envoie les changements à un différentiel pour relecture :
|
||||||
|
|
||||||
|
`arc diff`
|
||||||
|
|
||||||
|
- Affiche les informations de la révision en suspens :
|
||||||
|
|
||||||
|
`arc list`
|
||||||
|
|
||||||
|
- Mets à jour les messages de commit Git après relecture :
|
||||||
|
|
||||||
|
`arc amend`
|
||||||
|
|
||||||
|
- Pousse les changements Git :
|
||||||
|
|
||||||
|
`arc land`
|
9
pages.fr/common/arch.md
Normal file
9
pages.fr/common/arch.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# arch
|
||||||
|
|
||||||
|
> Affiche le nom de l'architecture système.
|
||||||
|
> Voir aussi `uname`.
|
||||||
|
> Plus d'informations : <https://www.gnu.org/software/coreutils/arch>.
|
||||||
|
|
||||||
|
- Affiche l'architecture système :
|
||||||
|
|
||||||
|
`arch`
|
Loading…
Add table
Reference in a new issue