Linux Commands

Guide to Remove Environment Variables in Linux

This guide begins with easy instructions to remove environment variables in Linux for both users looking for a fast solution and users looking for understanding of Linux environment variables.

After reading this tutorial, you will be able to delete Linux environment variables by running a simple command and to modify and add environment variables.

This article also includes an explanation of environment variables for users who are not familiar with them. All steps described in this content contain screenshots, making it easy to understand. It is recommended for readers to apply the described examples to get used to interacting with variables.

The unset command to remove environment variables in Linux

This document begins describing the necessary steps. Below this section you will find a full guide on environment variables to understand what they are and how to deal with them.

The command to remove environment variables in Linux is unset, which is executed followed by the variable you want to remove. The syntax is: unset <VARIABLE>

Before removing a variable, let’s list them using the printenv or env commands.

Printenv

If I want to remove the LANGUAGE variable I run the following command, as shown in the figure below:

unset LANGUAGE

Then, I run env or printenv (both return the same output) to check if the variable was deleted.

Env

As you can see, the environment variable was successfully removed.

If you want to add the variable again, use the export command as shown below:

set LANGUAGE=en_US:en

After adding the variable using the set command, you need to logout and login again to see the changes. As you can see in the screenshot below, the variable was added.

Printenv

That’s about removing environment variables in Linux, just use the following syntax as shown previously.

unset VARIABLE

If you are not familiar with environment variables, I recommend you keep reading this tutorial.

What is an environment variable in Linux

Environment variables can be seen as references for the bash shell, or processes interacting with shells.

For example, when the hypothetical user named linuxhint is logged in the system. The $HOME variable which specifies the user home is /home/linuxhint. Another example would be the $USER variable which specifies the user is linuxhint.

For example, a bash script to be distributed between different users uses the $HOME variable to learn the home directory of the user running the script. If the linuxhint user runs the script through the $HOME variable, the script will know the user home is /home/linuxhint. If the user torvalds executes the same script, his $HOME variable will refer the script to /home/torvalds as home directory.

If instructed, bash scripts will fetch information from the executing user environment variables to behave accordingly.

To see our environment variables, you can run the env or printenv commands as shown below.

Env

The environment variables shown in the above figure contain useful information for shell sessions.

The following list shows some of the most popular environment variables:

  • SHELL: This variable specifies the shell type and its path. In the example above the defined shell is bash.
  • HOME: The $HOME variable refers to the user’s home directory.
  • LANG: This variable defines the locale.
  • PWD: The $PWD environment variable shows the current working directory.
  • LOGNAME: This variable refers to the user who started the session.
  • DESKTOP_SESSION: This variable shows your X Window manager, in my case as you can see in the previous screenshot, my desktop environment is MATE.
  • USER: Refers to the currently logged in user.
  • PATH: The $PATH variable refers to all directories containing binaries the user can execute.

Modifying an environment variable:

The $PATH environment variable specifies the user binary (executable) file directories. A close view on this variable shows the following directories containing binaries the user can execute. When the user runs a command or calls a program, the shell will search within the defined directories in the PATH variable for the executable binary. If the binary is within a directory which is not included in the PATH variable, the user won’t be able to run it.

What you see below in the PATH variable is a list of directories containing executable binaries, separated by two dots:

Env

To see a specific variable, you can use the echo command followed by the variable. It is preceded by a $ symbol, as shown in the image below, in which only the $PATH variable is printed.

echo $PATH

The command below will return a more user-friendly view.

echo $PATH  | tr  :  \\n

Now, let’s assume you have an executable file within a directory which is not defined in your $PATH variable and you want to add it.

In the example below, the binary is in the hypothetical directory /custom (Under the root directory) which is not defined in the $PATH variable.

To add it, use the following syntax, where /custom is the new directory.

PATH=$PATH:/custom

See the environment variable to check if the new value was added by running the command below.

env

As you can see, it was successfully added. Now, the user can run binaries within the /custom directory.

Let’s assume we want to remove the /custom directory we added while leaving the rest. For this you can execute the command below.

PATH=$(echo "$PATH" | sed -e 's/:\/custom$//')

Check the PATH variable again to confirm the custom directory was deleted as shown in the following figure:

echo $PATH

If the path we want to remove has more than a directory, for example /home/usr/bin, the previous command would be as shown in the example below.

PATH=$(echo "$PATH" | sed -e 's/:\/home\/usr\/bin$//')

Adding new environment variables

In previous sections it was explained how to remove (unset) and modify environment variables. This section explains how to add them, for example, to hold a reference for a script.

The process is simple, we only need to run the export command followed by the variable and its value.

export VARIABLE=/path

Logout and login back in the terminal. Then, print the environment variables by running env or printenv and you will see the new variable.

Env

Note: To permanently add an environment variable, add the export line in the .bashrc file.

Local vs user vs system wide environment variables

  • Local environment variables: Local environment variables belong to the current session and may disappear after the session is closed.
  • User environment variables: User environment variables are defined in user’s configuration files. They are always loaded from the home directory when the user logins.
  • System wide variables: This type of variables don’t belong to a specific session or user, but to the entire system. For example, they can be general variables which affect all users.

To edit user environment variables you need to edit the .bashrc file located in the home directory. Variables exported to this file will load every time the user starts a session.

System variables are stored in the /etc/bash.bashrc file, that’s the file you need to edit to define general variables for all users.

Removing duplicate values in environment variables

In some cases, users by mistake duplicate environment variables values. This is not a real problem, but printing variables becomes messy.

In such a case the following line using the PATH variable as example, should remove duplicated entries.

PATH=$(echo $PATH | sed ':b;s/:\([^:]*\)\(:.*\):\1/:\1\2/;tb;s/^\([^:]*\)\(:.*\):\1/:\1\2/')

Now, let’s see the different types.

Conclusion

As you can see, environment variables are a vital part of the operating system. Without environment variables we could not even execute a binary or be linked to a home directory. Understanding how environment variables work is pretty simple and a must for every Linux user. Variables are not only relevant for Linux operating systems but also to Unix, Mac OS, and Windows.

This tutorial was focused on the most widely used shell, bash, other shells like zsh have different ways to manage variables.

Thank you for reading this tutorial explaining how to remove environment variables in Linux and how to interact with them. Keep reading Linux Hint for more professional Linux tutorials.

About the author

David Adams

David Adams is a System Admin and writer that is focused on open source technologies, security software, and computer systems.