Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cat: add more info link and update French translation #5497

Merged
merged 3 commits into from
Mar 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pages.fr/common/cat.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# cat

> 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 :

Expand All @@ -17,3 +18,7 @@
- Numérote toutes les lignes affichées :

`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 change: 1 addition & 0 deletions pages/common/cat.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# cat

> 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:

Expand Down