What are Environment Variables?
Environment variables hold values related to the current environment, like the Operating System or user sessions.
Path
One of the most well-known is called PATH
on Windows, Linux and Mac OS X. It specifies the directories in which executable programs* are located on the machine that can be started without knowing and typing the whole path to the file on the command line. (Or in Windows, the Run dialog in the Start Menu or +R).
On Linux and Mac OS X, it usually holds all bin
and sbin
directories relevant for the current user. On Windows, it contains at least the C:\Windows
and C:\Windows\system32
directories — that's why you can run calc.exe
or notepad.exe
from the command line or Run dialog, but not firefox.exe
. (Firefox is located in C:\Program Files\Mozilla Firefox
. For information on how to include Firefox, go here.)
For example, typing calc
(the .exe
can be omitted) in the command line on Windows will start up the Windows Calculator.
* You can add support for file extensions other than .exe
by editing %PATHEXT%
.
Other
Other variables might tell programs what kind of terminal is used (TERM
on Linux/Mac OS X), or, on Windows, where the Windows folder is located (e.g., %WINDIR%
is C:\Windows
).
Creating new environment variables
In Windows, Linux and Unix, it's possible to create new environment variables, whose values are then made available to all programs upon launch.
You can use this when writing scripts or programs that are installed or deployed to multiple machines and need to reference values that are specific to these machines. While a similar effect can be achieved using program-specific configuration settings, it's easier to do this using an environment variable if multiple programs need to access the same value.
Windows
GUI
Open Control Panel » System » Advanced » Environment Variables
.
Type control sysdm.cpl,,3
in the Run dialog (+R) and click Environment Variables
.
For editing user variables you can also type
%windir%\System32\rundll32.exe sysdm.cpl,EditEnvironmentVariables
in the Run dialog.
Right-click (My) Computer and click on Properties, or simply press +Break.
- In XP click on
Advanced » Environment Variables
.
- In Vista+ click on
Advanced system settings » Environment Variables
.
There are many other ways of reaching the same place, such as by typing "environment variables" in the Start Menu/Screen search box and so on.
Environment variables in Windows are separated into user and machine/system specific values. You can view and edit their values there. Their current values upon launch are made available to all programs.
There is also Rapid Environment Editor, which helps setting and changing environment variables in Windows without the need to go deep into the system settings. Another open source program for Windows with which the path environment can be edited very conveniently is Path Editor.
Command Line
Format
Environment Variables in Windows are denoted with percent signs (%) surrounding the name:
%name%
echo
To display an environment variable's value in cmd.exe
, type echo %name%
.
C:\>echo %USERPROFILE%
C:\Users\Daniel
set
To create/set a variable, use set varname=value
:
C:\>set FunnyCatPictures=C:\Users\Daniel\Pictures\Funny Cat Pictures
C:\>set FunnyCatPicturesTwo=%USERPROFILE%\Pictures\Funny Cat Pictures 2
To append/add a variable, use set varname=value;%varname%
:
C:\>set Penguins=C:\Linux
C:\>set Penguins=C:\Windows;%Penguins%
C:\>echo %Penguins%
C:\Windows;C:\Linux
Environment variables set in this way are available for (the rest of)
the duration of the Command Prompt process in which they are set,
and are available to processes that are started after the variables were set.
setx
To create/set a variable permanently, use setx varname "value"
:
C:\>setx FunnyCatPictures "C:\Users\Daniel\Pictures\Funny Cat Pictures"
[Restart CMD]
C:\>echo %FunnyCatPictures%
C:\Users\Daniel\Pictures\Funny Cat Pictures
Unlike set
, there is no equals sign and the value should be enclosed in quotes if it contains any spaces. Note that variables may expand to a string with spaces (e.g., %PATH%
becomes C:\Program Files
), so it is best to include quotes around values that contain any variables.
You must manually add setx
to versions of Windows earlier than Vista.
Windows XP Service Pack 2 Support Tools
List of Windows Environment Variables
Here is a list of default environment variables, which are built into Windows. Some examples are:
%WINDIR%
, %SystemRoot%
, %USERPROFILE%
, and %APPDATA%
.
Like most names in Windows, these are case-insensitive.
Unix derivatives (FreeBSD, GNU / Linux, OS X)
Environment Variables in Linux are prefixed with a dollar sign ($) such as $HOME or $HOSTNAME. Many well-known and standard variables are spelled out in capital letters to signify just that. Keep in mind that variable names are case-sensitive, meaning that $User and $USER are entirely unrelated from the shell's point of view.
Unix derivatives define system wide variables in shell scripts located mostly in the /etc
folder, but user-specific values may be given to those variables in scripts located in the home folder (e.g., /etc/profile
, $HOME/.bash_profile
). The .profile
file in the home folder is a common place to define user variables.
Setting variables
These files are regular shell scripts and can contain more than just environment variable declarations. To set an environment variable, use export
. To show your currently defined environment variables in a terminal, run env
.
The export
command is a standard way to define variables. The syntax is very intuitive. The outcome is identical for these two lines, but the first alternative is preferable in case portability to pre-POSIX Bourne shell is necessary.
var=value; export var
export var=value
The C shell and its descendants use a completely different syntax; there, the command is setenv
.
See the Linux documentation project, Path HOWTO for a more thorough discussion on this topic.
Perhaps contrary to common belief, OS X is more "Unix" than Linux. Additionally to the files already mentioned, $PATH can be modified in these files:
/etc/paths
contains all default directories that are added to the path, like /bin
and /usr/sbin
.
- Any file in
/etc/paths.d
— commonly used by installers to make the executable files they provide available from the shell without touching system-wide or user-specific configuration files. These files simply contain one path per line. e.g., /Programs/Mozilla/Calendar/bin.
External Links:
Environment Variables in XP
Windows XP Service Pack 2 Support Tools (Includes setx
)
Environment Variables in Windows Vista and Windows 7
Adding executables to the Run Dialog Box
Mac OSX Tips - Setting Environment Variables
TLDP: Path Howto
2
Tired of having to do it manually each time I needed to, I wrote some registry entries to add context menu entries for AddToPath and RemoveFromPath to folders, utilizing a free app called pathed.exe . Following is the link to the complete guide: http://www.addictivetips.com/windows-tips/add-remove-any-folder-to-path-variable-using-context-menu/ I can now very easily add folders to PATH variable or remove them from it, without having to edit any file or worry about messing up the formatting of the variable. Hope it helps. =)
– Haroon Q. Raja – 2012-04-16T14:48:42.013In Windows 8, the fastest navigation to changing system and user environment variables is using search. <kbd>Win</kbd>+<kbd>W</kbd> brings up the search for all settings. Search for
env
and the needed options are listed. – FRIdSUN – 2014-02-25T00:10:41.280I think it's faster and clearer by opening
CMD
and typingset
, orPowerShell
and typingGet-Childitem env:
. – paradroid – 2014-02-25T00:17:23.7301On Windows there is a shortcut for opening properties of System ie. Control Panel -> System It's WIN key on keyboard + Pause/Break (WIN+Break). This is extremely helpful and speeding up process of setting new environmental variables on Win8 because there you have to click through several windows in modern ui (Yeah. If it's modern then I'll grow a cactus on my palm) which is just annoying. Of course you can create powershell script or use setx command and don't worry any more about it :D – termil0r – 2012-11-08T16:59:11.363
If you're editing the path variable a lot (like when setting up a new system), it might help to have a shortcut to the System Properties dialog on the desktop. To do so, right click on the desktop, select New Shortcut, and enter systempropertiesadvanced.exe. Then you can click on the link to get to the System Properties dialog, then click on Environment Variables to get to the dialog with the path settings. – Brian Burns – 2015-03-09T18:12:48.353
Great post about it: http://www.windows-commandline.com/set-path-command-line/
– Royi – 2016-08-14T20:44:28.470