1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 19:35:24 +02:00

export: add Dutch translation (#13359)

export:  Dutch translation
This commit is contained in:
Sebastiaan Speck 2024-08-13 00:30:11 +02:00 committed by GitHub
parent 7c416a5691
commit ebda63a0a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

12
pages.nl/common/export.md Normal file
View file

@ -0,0 +1,12 @@
# export
> Exporteer shellvariabelen naar child-processen.
> Meer informatie: <https://manned.org/export.1posix>.
- Stel een omgevingsvariabele in:
`export {{VARIABELE}}={{waarde}}`
- Voeg een pad toe aan de omgevingsvariabele `PATH`:
`export PATH=$PATH:{{pad/om/toe_te_voegen}}`

24
pages.nl/linux/export.md Normal file
View file

@ -0,0 +1,24 @@
# export
> Exporteer shellvariabelen naar child-processen.
> Meer informatie: <https://www.gnu.org/software/bash/manual/bash.html#index-export>.
- Stel een omgevingsvariabele in:
`export {{VARIABELE}}={{waarde}}`
- Zet een omgevingsvariabele uit:
`export -n {{VARIABELE}}`
- Exporteer een functie naar child-processen:
`export -f {{FUNCTIE_NAAM}}`
- Voeg een pad toe aan de omgevingsvariabele `PATH`:
`export PATH=$PATH:{{pad/om/toe_te_voegen}}`
- Toon een lijst van actieve geëxporteerde variabelen in shell-opdrachtvorm:
`export -p`