better comments
[feisty_meow.git] / infobase / feisty_inits / dot.bashrc-root
1
2 ##############
3
4 # sets an alias to initialize the feisty meow environment for the "root" user.
5 # this is safe for root to use, since nothing drastic is modified in the
6 # environment.  one additional alias should not cripple anything.  plus we are
7 # updating the history size to ensure long histories to enable consulting old
8 # commands.
9
10 ##############
11
12 if [ -f /etc/bash.bashrc ]; then
13   # drag in the default version of this file.  this may not be needed if your
14   # .bashrc script already has substantial code or already does this.
15   source /etc/bash.bashrc
16 elif [ -f /etc/bashrc ]; then
17   # pull in the mac's version of this file.
18   source /etc/bashrc
19 fi
20
21 ##############
22
23 # set the history sizes to be much larger; important to have good history.
24 export HISTSIZE=1000000
25 export HISTFILESIZE=8000000
26
27 ##############
28
29 # system-wide install (will be fixed by connect_feisty_meow script):
30 export FEISTY_MEOW_APEX="/opt/feistymeow.org/feisty_meow"
31
32 # the "gofeisty" macro enables the feisty_meow environment.  this can be used
33 # after logging in, and avoids loading the feisty meow environment automatically.
34 alias gofeisty='source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh"'
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