nrpe: update to 4.1.3
[oi-userland.git] / components / shell / bash / files / etc.bash.bashrc
bloba993fb99313bfadbadc3d13239e3c241ad5a492e
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.
8 umask 022
10 # Where's the Gnu stuff at?
11 GNU=/usr/gnu/bin
12 X11=/usr/X11/bin
14 UTIL_PATH=$GNU:$X11
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
25         return
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.
33 set -o ignoreeof
35 # Set auto_resume if you want to resume on "emacs", as well as on
36 # "%emacs".
37 auto_resume=exact
39 # Set notify if you want to be asynchronously notified about background
40 # job completion.
41 set -o notify
43 # Make it so that failed `exec' commands don't flush this shell.
44 shopt -s execfail
46 if [ -z "$LOGIN_SHELL" ]; then
47     PS1="[\u@\h]:[\#]:[\w]:\$ "
50 HISTSIZE=256
51 MAILCHECK=60
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`"
61     fi
64 [ -f /etc/bash/bash_completion ] && . /etc/bash/bash_completion
66 for s in /etc/bash/*.sh ; do
67     test -r $s && . $s
68 done
70 for s in /etc/bash/*.bash ; do
71     test -r $s && . $s
72 done
74 [ -f ~/.bash_expert ] && . ~/.bash_expert
76 [ -f ~/.bash_aliases ] && . ~/.bash_aliases