Set Envonment Variable in Linux

From Cramsession
Revision as of 16:16, 17 October 2024 by Mflavell (talk | contribs) (Mflavell moved page Set Envonment Varabe in Linux to Set Envonment Variable in Linux without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials

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/