1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,7 @@
# mapfile
> Dit commando is een alias van `readarray`.
- Bekijk de documentatie van het originele commando:
`tldr readarray`

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}}`