1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-13 23:15:41 +02:00
tldr/pages.fr/common/wc.md

21 lines
348 B
Markdown
Raw Normal View History

2019-07-03 18:45:37 +02:00
# wc
> Compte les mots, les octets ou les lignes.
2019-10-24 20:38:20 +02:00
- Compte les lignes d'un fichier :
2019-07-03 18:45:37 +02:00
`wc -l {{file}}`
2019-10-24 20:38:20 +02:00
- Compte les mots d'un fichier :
2019-07-03 18:45:37 +02:00
`wc -w {{file}}`
2019-10-24 20:38:20 +02:00
- Compte les caractères (octets) d'un fichier :
2019-07-03 18:45:37 +02:00
`wc -c {{file}}`
2019-10-24 20:38:20 +02:00
- Compte les caractères d'un fichier (en prenant en compte l'ensemble des caractères multi-octets) :
2019-07-03 18:45:37 +02:00
`wc -m {{file}}`