1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 11:19:46 +01:00
tldr/pages.fr/common/wc.md
Mia Combeau fb32bd7387
tar, wc, zsh: update French translation (#9548)
* tar: update French translation

* wc: update French translation

* zsh: update French translation

* tar: update French translation

* tar: update French translation

* tar: update French translation

* tar: update French translation

* tar: update French translation

* tar: update French translation

* tar: update French translation

* zsh: update French translation
2022-11-29 05:23:59 +10:00

721 B

wc

Compte les lignes, les mots ou les octets. Plus d'informations : https://www.gnu.org/software/coreutils/wc.

  • Compte les lignes d'un fichier :

wc --lines {{chemin/vers/fichier}}

  • Compte les mots d'un fichier :

wc --words {{chemin/vers/fichier}}

  • Compte les octets d'un fichier :

wc --bytes {{chemin/vers/fichier}}

  • Compte les caractères d'un fichier (en prenant en compte l'ensemble des caractères multi-octets) :

wc --chars {{chemin/vers/fichier}}

  • Compte les lignes, les mots et les caractères depuis l'entrée standard stdin :

{{find .}} | wc

  • Compte la longueur en nombre de caractères de la plus grande ligne d'un fichier :

wc --max-line-length {{chemin/vers/fichier}}