Working with BASH environment variables (simple commands for beginners)
You'll learn the following in this tutorial.
- Display names and values of all environment variables
- Assign value to an environment variable
- Print value of a particular environment variable
- Append value to an existing environment variable
- Make the variable globally accessible
- Delete an environment variable
I have tried instructions below on Ubuntu Server but should work for all distributions running the BASH shell.
Display names and values of all environment variables
env
Assign value to an environment variable
TESTVAR=value
Example:
TESTVAR=/usr/local/sbin:/usr/local/bin
Command above assigns the value "/usr/local/sbin:/usr/local/bin" to the TESTVAR variable.
Print value of a particular environment variable
echo $<variable name>
Example:
echo $TESTVAR
Command above prints the value of BASH's TESTVAR variable.
Append value to an existing environment variable:
<variable name>=$<variable name>:<new value>
Example:
TESTVAR=$TESTVAR:/bin
Command above appends "/bin" to the value of BASH's TESTVAR variable.
Make the variable globally accessible:
export <variable name>
Example:
export TESTVAR
Delete an environment variable:
unset <variable name>
Example:
unset TESTVAR
Please feel free to use the comments form below if you have any questions or need more explanation on anything. Use the icons below to share this tutorial with your friends.
tags cloud
popular searches
free download for mysql database server 5.1.5, php, linux, mysql mysql, mysql, java, install mysql, gearman, ubuntu, tools, source code, bison, mysql initialization, install cairo, laptop
Similar Tutorials:
- How to download, compile, and install CMake on Linux
- Installing MySQL Client tools, binaries, and library on Ubuntu Linux
- How to download, compile, and install GNU ncurses on Debian/Ubuntu Linux
- Linux kernel data structures (Part 1) - the current macro
- Installing OpenSSL on Ubuntu Linux
Tutorials in 'Operating Systems > Linux' (more):
- How to download, compile, and install CMake on Linux
- How to download, compile, and install GNU ncurses on Debian/Ubuntu Linux
- How to install libevent on Debian/Ubuntu/Centos Linux
- How to install MySQL Gearman UDF on Ubuntu/Debian Linux
- Installing Gearman shared PECL extension for PHP on Debian/Ubuntu Linux


Comments (write a comment):
0 comments so far. Be the first one to leave a comment on this article.