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

export: add German translation (#7341)

This commit is contained in:
S-Espinet 2021-11-03 06:38:09 -07:00 committed by GitHub
parent 1aa676d6be
commit c75bb8d765
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages.de/common/export.md Normal file
View file

@ -0,0 +1,20 @@
# export
> Befehl zum Markieren von Shell-Variablen in der aktuellen Umgebung, die mit allen neu abgezweigten Unterprozessen exportiert werden sollen.
> Weitere Informationen: <https://www.gnu.org/software/bash/manual/bash.html#index-export>.
- Lege eine neue Umgebungsvariable fest:
`export {{variable}}={{wert}}`
- Entferne eine Umgebungsvariable:
`export -n {{variable}}`
- Markiere eine Shell-Funktion für den Export:
`export -f {{funktionsname}}`
- Hänge etwas an die PATH-Variable an:
`export PATH=$PATH:{{pfad/zu/anhängen}}`