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:
parent
14cefcc7f9
commit
9ca3c785c5
1 changed files with 19 additions and 0 deletions
19
pages.fr/common/cat.md
Normal file
19
pages.fr/common/cat.md
Normal 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}}`
|
Loading…
Reference in a new issue