What is the PATH environmental variable?
Specifies the search path
What is the Shell environmental variable?
Where do you add a new location for custom script execution?
~/.bash_profile
What is the command to refresh the ~/.bash_profile file?
source ~/.bash_profile
How do you add a new alias?
Edit the .bashrc file.
Example: alias findMe=pwd
How do you add a new alias?
Edit the .bashrc file.
Example: alias findMe=pwd
What is the syntax of a while loop?
while []
do
…
done
What is the syntax of a until loop?
until []
do
…
done
What is the syntax of a for loop?
for [x in x]
do
…
done