9 lines
139 B
Bash
9 lines
139 B
Bash
# Enviroment Variables
|
|
|
|
# Path variable
|
|
export PATH=$PATH:$HOME/bin
|
|
|
|
# Bash prompt color - green
|
|
export PS1="\e[0;32m[\u@\h \W]\$ \e[m "
|
|
|
|
|