1
2
3
4
5
6
7
8
9
10
11
12
# Example: setting a variable
a=3; echo a; echo $a
# Example: environment variables
# type the active shell program
echo $SHELL
# Example: the PS1 environment variable
export PS1="% "
export PS1="$ "
export PS1="\\u@\h \\W>" # set prompt to user@host dir>
Enter to Rename, Shift+Enter to Preview