Answers for "how to set environment variable permanently in linux"

3

how to set environment variable in linux permanently

#open terminal and type:
$ nano .bashrc

#scroll to the bottom of the script and type:
export <place variable name in here> = '<place variable value here>'

#e.g
export ANDROID_SDK_ROOT='/home/<$USER>/Android/Sdk'

#once you,re finished typing in your variable hit Ctrl+X then press enter
Posted by: Guest on August-14-2021
-2

how to set environment variables in linux

vi ~/.bash_profile
Posted by: Guest on March-04-2021

Code answers related to "how to set environment variable permanently in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language