updated bashrc examples
[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 # If not running interactively, don't do anything
8 case $- in
9     *i*) ;;
10       *) return;;
11 esac
12
13 ##############
14
15 # drag in the default version of this file.  this may not be needed if your
16 # .bashrc script already has substantial code or already does this.
17 source /etc/bash.bashrc
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 fi
34
35 ##############
36