- ~/.bash_profile
- ~/.bash_login
- ~/.profile
Pvz, jei yra tik ~/.profile. Jame nurodyta, patikrinti konsolės interpretatorių.
Jei naudojam bash'a, vykdomas .bashrc failas.
if [ -n "$BASH_VERSION" ]; then #tikrinama ar naudojamas bash
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then #tikrinama ar egzistuoja toks failas
. "$HOME/.bashrc" # pridedam .bashrc
fi
fi