When setting up a variable in .bashrc
, should I use this?
export VAR=value
Or would this be enough?
VAR=value
What is exactly the difference (if there is one)?
When setting up a variable in .bashrc
, should I use this?
export VAR=value
Or would this be enough?
VAR=value
What is exactly the difference (if there is one)?
The best way
The difference
Doing
only sets the variable for the duration of the script (
.bashrc
in this case). Child processes (if any) of the script won't have VAR defined, and once the script exitsVAR
is gone.explicitly adds
VAR
to the list of variables that are passed to child processes. Want to try it? Open a shell, doThe new shell gets the default prompt. If instead you do something like
the new shell gets the prompt you just set.
Update: as Ian Kelling notes below variables set in
.bashrc
persist in the shell that sourced.bashrc
. More generally whenever the shell sources a script (using thesource scriptname
command) variables set in the script persist for the life of the shell.Both seem to work just fine, but using export will ensure the variable is available to subshells and other programs. To test this out try this.
Add these two lines to your .bashrc file
Then open a new shell.
Running
echo $TESTVAR
andecho $MYTESTVAR
will show the contents of each variable. Now inside that same shell remove those two lines from your .bashrc file and runbash
to start a subshell.Running
echo $TESTVAR
will have an empty output, but runningecho $MYTESTVAR
will display "with export"