Files
oam/knowledge base/export all variables in a envfile.md
2022-05-15 00:24:53 +02:00

16 lines
347 B
Markdown

# Export all variables in an envfile
## TL;DR
```sh
set -o allexport
source envfile
set +o allexport
```
## Sources
- [Set environment variables from file of key/value pairs]
[set environment variables from file of key/value pairs]: https://stackoverflow.com/questions/19331497/set-environment-variables-from-file-of-key-value-pairs#30969768