tldr/pages/linux/export.md

20 lines
404 B
Markdown
Raw Normal View History

# export
> Command to mark shell variables in the current environment to be exported with any newly forked child processes.
- Set a new environment variable:
`export {{VARIABLE}}={{value}}`
- Remove an environment variable:
`export -n {{VARIABLE}}`
2018-11-06 01:35:14 +03:00
- Mark a shell function for export:
`export -f {{FUNCTION_NAME}}`
- Append something to the PATH variable:
2017-12-20 14:52:32 +03:00
`export PATH=$PATH:{{path/to/append}}`