mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 12:35:23 +02:00
wc: add Dutch translation (#13048)
This commit is contained in:
parent
b666b85851
commit
26ad88556f
2 changed files with 52 additions and 0 deletions
28
pages.nl/common/wc.md
Normal file
28
pages.nl/common/wc.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# wc
|
||||
|
||||
> Tel regels, woorden en bytes.
|
||||
> Meer informatie: <https://www.gnu.org/software/coreutils/wc>.
|
||||
|
||||
- Tel alle regels in een bestand:
|
||||
|
||||
`wc --lines {{pad/naar/bestand}}`
|
||||
|
||||
- Tel alle woorden in een bestand:
|
||||
|
||||
`wc --words {{pad/naar/bestand}}`
|
||||
|
||||
- Tel alle bytes in een bestand:
|
||||
|
||||
`wc --bytes {{pad/naar/bestand}}`
|
||||
|
||||
- Tel alle karakters in een bestand (rekening houdend met multi-byte karakters):
|
||||
|
||||
`wc --chars {{pad/naar/bestand}}`
|
||||
|
||||
- Tel alle regels, woorden en bytes van `stdin`:
|
||||
|
||||
`{{find .}} | wc`
|
||||
|
||||
- Tel de lengte van de langste regel in aantal karakters:
|
||||
|
||||
`wc --max-line-length {{pad/naar/bestand}}`
|
24
pages.nl/osx/wc.md
Normal file
24
pages.nl/osx/wc.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# wc
|
||||
|
||||
> Tel regels, woorden of bytes.
|
||||
> Meer informatie: <https://keith.github.io/xcode-man-pages/wc.1.html>.
|
||||
|
||||
- Tel regels in een bestand:
|
||||
|
||||
`wc -l {{pad/naar/bestand}}`
|
||||
|
||||
- Tel woorden in een bestand:
|
||||
|
||||
`wc -w {{pad/naar/bestand}}`
|
||||
|
||||
- Tel tekens (bytes) in een bestand:
|
||||
|
||||
`wc -c {{pad/naar/bestand}}`
|
||||
|
||||
- Tel tekens in een bestand (rekening houdend met multi-byte tekensets):
|
||||
|
||||
`wc -m {{pad/naar/bestand}}`
|
||||
|
||||
- Gebruik `stdin` om regels, woorden en tekens (bytes) in die volgorde te tellen:
|
||||
|
||||
`{{find .}} | wc`
|
Loading…
Add table
Reference in a new issue