6 lines
134 B
Bash
6 lines
134 B
Bash
|
# include .profile if it exists
|
||
|
[[ -f ~/.profile ]] && . ~/.profile
|
||
|
|
||
|
# include .bashrc if it exists
|
||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|