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