mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-06 11:35:23 +02:00
cat: fix French punctuation and missing translations
This commit is contained in:
parent
f86a83c9d3
commit
dad999edbe
1 changed files with 8 additions and 8 deletions
|
@ -2,18 +2,18 @@
|
|||
|
||||
> Affiche et concatène le contenu d'un ou plusieurs fichiers.
|
||||
|
||||
- Affiche le contenu d'un fichier sur la sortie standard:
|
||||
- Affiche le contenu d'un fichier sur la sortie standard :
|
||||
|
||||
`cat {{file}}`
|
||||
`cat {{fichier}}`
|
||||
|
||||
- Concatène le contenu de plusieurs fichiers vers le fichier de destination:
|
||||
- Concatène le contenu de plusieurs fichiers vers le fichier de destination :
|
||||
|
||||
`cat {{file1}} {{file2}} > {{target_file}}`
|
||||
`cat {{fichier1}} {{fichier2}} > {{fichier_de_destination}}`
|
||||
|
||||
- Ajoute le contenu d'un ficher à la fin du fichier de destination:
|
||||
- Ajoute le contenu d'un ficher à la fin du fichier de destination :
|
||||
|
||||
`cat {{file1}} {{file2}} >> {{target_file}}`
|
||||
`cat {{fichier1}} {{fichier2}} >> {{fichier_de_destination}}`
|
||||
|
||||
- Numérote toutes les lignes affichées:
|
||||
- Numérote toutes les lignes affichées :
|
||||
|
||||
`cat -n {{file}}`
|
||||
`cat -n {{fichier}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue