1 # Bourne Again SHell init file.
3 # Files you make look like rw-rw-r
6 # Don't make useless coredump files. If you want a coredump,
7 # say "ulimit -c unlimited" and then cause a segmentation fault.
10 # Sometimes, there are lots of places that one can find tex inputs.
11 export TEXINPUTS=.:$HOME/bin:/usr/lib/tex/inputs:/usr/local/lib/tex/inputs
13 # Where's the Gnu stuff at?
18 STANDARD_PATH=/usr/local/bin:/usr/ucb:/bin:/usr/bin:/usr/etc:/etc:/usr/games
20 if [ -d $HOME/bin/$HOSTTYPE ]; then
21 MY_PATH=$HOME/bin/$HOSTTYPE
24 if [ -d $HOME/bin ]; then
25 MY_PATH=$MY_PATH:$HOME/bin
28 if [ -d /usr/hosts ]; then
29 STANDARD_PATH=$STANDARD_PATH:/usr/hosts
32 PATH=.:$MY_PATH:$UTIL_PATH:$STANDARD_PATH
34 # If not running interactively, then return
35 if [ -z "$PS1" ]; then
39 # Set ignoreeof if you don't want EOF as the sole input to the shell to
40 # immediately signal a quit condition. This only happens at the start
41 # of a line if the line is empty, and you haven't just deleted a character
42 # with C-d. I turn this on in ~/.bash_profile so that only login shells
43 # have the right to be obnoxious.
46 # Set auto_resume if you want to resume on "emacs", as well as on
50 # Set notify if you want to be asynchronously notified about background
54 # Make it so that failed `exec' commands don't flush this shell.
57 if [ -z "$LOGIN_SHELL" ]; then
64 # A couple of default aliases.
70 [ -f ~/.bash_aliases ] && . ~/.bash_aliases