1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 02:17:56 +01:00

cat: add French translation (#3142)

This commit is contained in:
David Bariod 2019-06-27 22:17:42 +02:00 committed by Starbeamrainbowlabs
parent 14cefcc7f9
commit 9ca3c785c5

19
pages.fr/common/cat.md Normal file
View file

@ -0,0 +1,19 @@
# cat
> Affiche et concatène le contenu d'un ou plusieurs fichiers.
- Affiche le contenu d'un fichier sur la sortie standard:
`cat {{file}}`
- Concatène le contenu de plusieurs fichiers vers le fichier de destination:
`cat {{file1}} {{file2}} > {{target_file}}`
- Ajoute le contenu d'un ficher à la fin du fichier de destination:
`cat {{file1}} {{file2}} >> {{target_file}}`
- Numérote toutes les lignes affichées:
`cat -n {{file}}`