better comments
[feisty_meow.git] / infobase / feisty_inits / dot.bashrc-normal-user
1
2 ##############
3
4 # initialize the feisty meow environment for "normal" users.
5 # this is not intended for the root user, because having a bunch of extra
6 # scripts automatically loaded into root's environment is not a good idea.
7
8 ##############
9
10 if [ -f /etc/bash.bashrc ]; then
11   # drag in the default version of this file.  this may not be needed if your
12   # .bashrc script already has substantial code or already does this.
13   source /etc/bash.bashrc
14 elif [ -f /etc/bashrc ]; then
15   # pull in the mac's version of this file.
16   source /etc/bashrc
17 fi
18
19 ##############
20
21 # set the history sizes to be much larger; important to have good history.
22 export HISTSIZE=1000000
23 export HISTFILESIZE=8000000
24
25 ##############
26
27 # system-wide install (will be fixed by connect_feisty_meow script):
28 export FEISTY_MEOW_APEX="/opt/feistymeow.org/feisty_meow"
29
30 # sets up the feisty_meow scripts if appropriate for the environment.
31 if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
32   if [ -d "$FEISTY_MEOW_APEX" ]; then
33     source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh"
34   else
35     echo "feisty meow codebase is not available at: $FEISTY_MEOW_APEX"
36   fi
37 fi
38
39 # if not commented out, then feisty meow will run all the unit tests during builds.
40 #export RUN_ALL_TESTS=true
41
42 # turns on noisy debugging in feisty meow scripts if uncommented.
43 #export DEBUG_FEISTY_MEOW=true
44
45 ##############
46