1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/common/wc.md

20 lines
347 B
Markdown
Raw Normal View History

2019-07-03 18:45:37 +02:00
# wc
2019-11-14 10:58:45 -06:00
> Compte les lignes, les mots ou les octets.
2019-07-03 18:45:37 +02:00
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}}`