Topic 7 - Unix Shell Environments Flashcards
HOME
the full path name of your home directory
SHELL
the name of your login shell
PWD
the full path of the current working directory
USER
the user name of the logged in user
TERM
the kind of terminal the user is using
DISPLAY
which X server to display on
PATH
the directories the shell should search to find a command
HOST
the name of e the computer you are using
REMOTEHOST
the name of the host logged-in from
MANPATH
the directories the man command should search to find man pages
Shell variable names can be made up of:
Alphabetical characters
Digits
Underscores
Shell variable names cannot begin with:
a digit
Shell variables can store either:
string of characters, or NULL
Shell variables can be accessed by putting a ____ in front of ____
putting a $ in front of their names. e.g., echo $HOME
Are variable names case-sensitive?
yes
What are the two kinds of shell variables?
Environmental variables (GLOBAL) & Regular Variables (LOCAL)
Define environmental variables
Affecting the current shell and the programs invoked from the shell.