aace71cfe6fad95939d48c63692accb2d36b6015
[feisty_meow.git] / feisty_inits / dot.bashrc-normal-user
1
2 # initializes the feisty meow environment for "normal" users (not intended for the root user).
3
4 ##############
5
6 # drag in the default version of this file.  this may not be needed if your
7 # .bashrc script already has substantial code or already does this.
8 source /etc/bash.bashrc
9
10 ##############
11
12 # set the history sizes to be much larger, and do this whether we load the
13 # feisty meow environment or not.
14
15 export HISTSIZE=1000000
16 export HISTFILESIZE=8000000
17
18 ##############
19
20 # sets up the feisty_meow scripts if appropriate for the environment.
21 if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
22   source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh
23
24   # if not commented out, then feisty meow will run all the unit tests during builds.
25   export RUN_ALL_TESTS=true
26
27   # turns on noisy debugging in feisty meow scripts if uncommented.
28   #export DEBUG_FEISTY_MEOW=true
29 fi
30
31 ##############
32