mapfile, readarray: add Dutch translation (#15416)

This commit is contained in:
Sebastiaan Speck
2025-01-03 18:14:25 +01:00
committed by GitHub
parent 54dbef5af3
commit fc991555cb
2 changed files with 27 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# mapfile
> Dit commando is een alias van `readarray`.
- Bekijk de documentatie van het originele commando:
`tldr readarray`
+20
View File
@@ -0,0 +1,20 @@
# readarray
> Lees regels van `stdin` in een array.
> Meer informatie: <https://www.gnu.org/software/bash/manual/bash.html#index-readarray>.
- Interactief regels in een array invoeren:
`readarray {{array_naam}}`
- Lees regels uit een bestand en plaats ze in een array:
`readarray {{array_naam}} < {{pad/naar/bestand.txt}}`
- Verwijder scheidingstekens aan het einde (standaard newline):
`readarray -t {{array_naam}} < {{pad/naar/bestand.txt}}`
- Kopieer maximaal het opgegeven aantal regels:
`readarray -n {{N}} {{array_naam}} < {{pad/naar/bestand.txt}}`