mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
export: moved to linux directory and created a copy in the osx directory, removed echo example from export.md, added a more detailed description of the export command, added an example how to remove an environment variable
This commit is contained in:
parent
d1c8039a91
commit
736925341c
@ -1,15 +0,0 @@
|
||||
# export
|
||||
|
||||
> Command to set environment variables.
|
||||
|
||||
- Set a new environment variable:
|
||||
|
||||
`export {{VARIABLE}}={{value}}`
|
||||
|
||||
- Echo the value of an environment variable (don't forget the Dollar sign):
|
||||
|
||||
`echo {{$VARIABLE}}`
|
||||
|
||||
- Append something to the PATH variable:
|
||||
|
||||
`export PATH=$PATH:{{/path/to/append}}`
|
15
pages/linux/export.md
Normal file
15
pages/linux/export.md
Normal file
@ -0,0 +1,15 @@
|
||||
# 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}}`
|
15
pages/osx/export.md
Normal file
15
pages/osx/export.md
Normal file
@ -0,0 +1,15 @@
|
||||
# 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}}`
|
Loading…
Reference in New Issue
Block a user