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