mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 13:25:59 +02:00
cat: add more info link and update French translation (#5497)
This commit is contained in:
parent
b162d78b7f
commit
ea46986276
2 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
# cat
|
# cat
|
||||||
|
|
||||||
> Affiche et concatène le contenu d'un ou plusieurs fichiers.
|
> Affiche et concatène le contenu d'un ou plusieurs fichiers.
|
||||||
|
> Plus d'informations : <https://www.man7.org/linux/man-pages/man1/cat.1.html>.
|
||||||
|
|
||||||
- Affiche le contenu d'un fichier sur la sortie standard :
|
- Affiche le contenu d'un fichier sur la sortie standard :
|
||||||
|
|
||||||
|
@ -17,3 +18,7 @@
|
||||||
- Numérote toutes les lignes affichées :
|
- Numérote toutes les lignes affichées :
|
||||||
|
|
||||||
`cat -n {{fichier}}`
|
`cat -n {{fichier}}`
|
||||||
|
|
||||||
|
- Affiche les caractères non-imprimables ainsi que les caractères d'espacement (en utilisant le préfixe `M-` prefix si non-ASCII) :
|
||||||
|
|
||||||
|
`cat -v -t -e {{fichier}}`
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# cat
|
# cat
|
||||||
|
|
||||||
> Print and concatenate files.
|
> Print and concatenate files.
|
||||||
|
> More information: <https://www.man7.org/linux/man-pages/man1/cat.1.html>.
|
||||||
|
|
||||||
- Print the contents of a file to the standard output:
|
- Print the contents of a file to the standard output:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue