The environment is defined by environment variables.
TEST="Hello World"
echo $TEST
# Hello World
The terminal reads variables from /etc/profile
and profile
on initialization.
PATH defines a list of locations where the terminal should look for commands. Each path is separated by a :
colon character. The following command defines a PATH
:
PATH=/bin:/usr/bin