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