sed: add Dutch translation (#12019)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Sebastiaan Speck
2024-01-08 14:11:11 +01:00
committed by GitHub
parent 7426b41b08
commit 5db8155efb
6 changed files with 158 additions and 0 deletions

17
pages.nl/common/sed.md Normal file
View File

@@ -0,0 +1,17 @@
# sed
> Pas tekst aan in een op een scriptbare manier.
> Bekijk ook: `awk`, `ed`.
> Meer informatie: <https://manned.org/man/sed.1posix>.
- Vervang alle `apple` (basis regex) met `mango` (basis regex) in alle invoerregels en toon het resultaat in `stdout`:
`{{commando}} | sed 's/apple/mango/g'`
- Voer een specifiek script bestand uit en toon het resultaat in `stdout`:
`{{commando}} | sed -f {{pad/naar/script.sed}}`
- Toon alleen de eerste regel in `stdout`:
`{{commando}} | sed -n '1p'`