blob: 2871be79b44ddd5a0108a2bfc388459ae4ac439f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Execute the user's rootrc file if it exists instead of this one.
if [ $USER && $USER != root ]; then
. ~$USER/.root_bashrc
else
# define some handy aliases
alias j jobs -l
alias c clear
alias z suspend
alias d dirs
fi
|