2024-06-18 22:03:31 +02:00
|
|
|
# wc
|
|
|
|
|
|
|
|
> Tel regels, woorden en bytes.
|
2025-01-18 18:45:33 +05:30
|
|
|
> Meer informatie: <https://www.gnu.org/software/coreutils/manual/html_node/wc-invocation.html>.
|
2024-06-18 22:03:31 +02:00
|
|
|
|
|
|
|
- Tel alle regels in een bestand:
|
|
|
|
|
2025-03-19 00:36:34 +02:00
|
|
|
`wc {{[-l|--lines]}} {{pad/naar/bestand}}`
|
2024-06-18 22:03:31 +02:00
|
|
|
|
|
|
|
- Tel alle woorden in een bestand:
|
|
|
|
|
2025-03-19 00:36:34 +02:00
|
|
|
`wc {{[-w|--words]}} {{pad/naar/bestand}}`
|
2024-06-18 22:03:31 +02:00
|
|
|
|
|
|
|
- Tel alle bytes in een bestand:
|
|
|
|
|
2025-03-19 00:36:34 +02:00
|
|
|
`wc {{[-c|--bytes]}} {{pad/naar/bestand}}`
|
2024-06-18 22:03:31 +02:00
|
|
|
|
|
|
|
- Tel alle karakters in een bestand (rekening houdend met multi-byte karakters):
|
|
|
|
|
2025-03-19 00:36:34 +02:00
|
|
|
`wc {{[-m|--chars]}} {{pad/naar/bestand}}`
|
2024-06-18 22:03:31 +02:00
|
|
|
|
|
|
|
- Tel alle regels, woorden en bytes van `stdin`:
|
|
|
|
|
|
|
|
`{{find .}} | wc`
|
|
|
|
|
|
|
|
- Tel de lengte van de langste regel in aantal karakters:
|
|
|
|
|
2025-03-19 00:36:34 +02:00
|
|
|
`wc {{[-L|--max-line-length]}} {{pad/naar/bestand}}`
|