blob: db55de67a702a339be5fbd365666eaa14acd5f07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
if [ -d "$HOME/scripts/utils" ] ; then
PATH="$HOME/scripts/utils:$PATH"
fi
if [ "$BASH" ]; then
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
fi
mesg n 2> /dev/null || true
|