cat, cksum, comm, cut, chcon, csplit: add Dutch translation (#11999)

Co-authored-by: Leon <leonvsc@users.noreply.github.com>
This commit is contained in:
Sebastiaan Speck
2024-01-09 19:54:56 +01:00
committed by GitHub
parent 214ad27211
commit 73c8bd118f
9 changed files with 154 additions and 8 deletions

16
pages.nl/osx/cut.md Normal file
View File

@@ -0,0 +1,16 @@
# cut
> Snij velden eruit vanuit `stdin` of bestanden.
> Meer informatie: <https://manned.org/man/freebsd-13.0/cut.1>.
- Toon een specifiek karakter/veldbereik voor iedere regel:
`{{commando}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}`
- Toon een bereik voor iedere regel met een specifieke scheiding:
`{{commando}} | cut -d "{{,}}" -f {{1}}`
- Toon een bereik van iedere regel voor een specifiek bestand:
`cut -c {{1}} {{pad/naar/bestand}}`