aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: 46564da02b2794b0e6202d47ba54f729a7998923 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Source .bashrc if it exists.
[[ -e "$HOME/.bashrc" ]] && source "$HOME/.bashrc"

# Add various paths if they exit.
DIRS="${HOME}/bin
      /usr/local/apache/bin
      /usr/local/mysql/bin
      /usr/local/nagios/bin
      /usr/local/pgsql/bin"
for DIR in $DIRS; do
    [[ -d "$DIR" ]] && PATH="${DIR}:${PATH}"
done

# None of this UTF8 drawing characters nonsense.
export NCURSES_NO_UTF8_ACS=1