1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 18:17:57 +01:00
tldr/pages/osx/export.md
2017-12-20 17:22:53 +05:30

336 B

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

  • Append something to the PATH variable:

export PATH=$PATH:{{path/to/append}}