2 # This file contains an example of default settings that can be made for
3 # bash(1) users on this system. To make these settings the default for system
4 # users, you will need to copy it to /etc/bash/bashrc
6 # Bourne Again SHell init file.
10 # Where's the Gnu stuff at?
15 STANDARD_PATH=/bin:/usr/bin:/sbin:/usr/sbin
17 if [ -d $HOME/bin ]; then
18 MY_PATH=$MY_PATH:$HOME/bin
21 export PATH="$MY_PATH:$UTIL_PATH:$STANDARD_PATH"
23 # If not running interactively, then return
24 if [ -z "$PS1" ]; then
28 # Set ignoreeof if you don't want EOF as the sole input to the shell to
29 # immediately signal a quit condition. This only happens at the start
30 # of a line if the line is empty, and you haven't just deleted a character
31 # with C-d. I turn this on in ~/.bash_profile so that only login shells
32 # have the right to be obnoxious.
35 # Set auto_resume if you want to resume on "emacs", as well as on
39 # Set notify if you want to be asynchronously notified about background
43 # Make it so that failed `exec' commands don't flush this shell.
46 if [ -z "$LOGIN_SHELL" ]; then
47 PS1="[\u@\h]:[\#]:[\w]:\$ "
54 # we want pretty colored file listings
56 if [ -x /usr/bin/dircolors ] ; then
57 if [ -f ~/.dir_colors ] ; then
58 eval "`/usr/bin/dircolors -b ~/.dir_colors`"
59 elif [ -f ~/.dircolors ] ; then
60 eval "`/usr/bin/dircolors -b ~/.dircolors`"
64 [ -f /etc/bash/bash_completion ] && . /etc/bash/bash_completion
66 for s in /etc/bash/*.sh ; do
70 for s in /etc/bash/*.bash ; do
74 [ -f ~/.bash_expert ] && . ~/.bash_expert
76 [ -f ~/.bash_aliases ] && . ~/.bash_aliases