How can you edit the environment variables via command line in ubuntu?

link|improve this question
feedback

5 Answers

You can set environment variables from the command line, but the new values will apply only to that terminal session and any processes launched from it. Environment variables are handled differently in Unix than they are in Windows. When a Unix process is created, it inherits an environment from its parent process that includes environment variables. Changes to a process's environment affect that process and its children, but not any other processes.

With that caveat, you can set an environment variable in a Bourne-like shell such as bash like this:

export MYVAR=myvalue
link|improve this answer
feedback

To set TEST to XYZ, use this format:

TEST=XYZ; export TEST

link|improve this answer
feedback

I also found it useful to install nano and edit the text of the environment file which in my case was found in the etc folder.

sudo apt-get install nano

sudo nano filename

link|improve this answer
feedback

If you want to modify/set environment variable(s) for your current shell session, which will last until you close/exit it, then

export MYVAR=value

If you want to modify/set environment variable(s) to be present every time you run your shell, then you should modify your shell's config file to include the above line.

To find out what shell you're running, type:

# echo $SHELL

Then edit the appropriate configuration file:

  • For sh you would modify ~/.profile
  • For bash you would modify ~/.bashrc
  • For zsh you would modify ~/.zshrc or ~/.zshenv

Where the ~ character in each case represents the path to your home directory. If editing on the command line, you can just use it directly, e.g. to open the file in the vim editor:

# vim ~/.profile

If you're using a GUI-based editor you should just navigate to your home directory to find the appropriate config file.

link|improve this answer
feedback

edit /etc/environment

when you log out and log back in, the new values will be present.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.