Set Envonment Variable in Linux: Difference between revisions

From Cramsession
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials
No edit summary
m (Mflavell moved page Set Envonment Varabe in Linux to Set Envonment Variable in Linux without leaving a redirect)
 
(No difference)

Latest revision as of 16:16, 17 October 2024

Displaying a Variable

echo $VARABLENAME

Setting a Varible

export VARIABLE_NAME=value

Make Varable Persistant

Add to bash RC:

vi ~/.bashrc

Source it

source .bashrc

Open a new session to test

References

https://www.freecodecamp.org/news/how-to-set-an-environment-variable-in-linux/