some nice cleaning in these example scripts.
[feisty_meow.git] / examples / feisty_meow_startup / bashrc_user
1
2 # add this file to your ~/.bashrc if you want the feisty_meow scripts to be
3 # loaded up automatically.  this assumes your default shell is bash.
4 # ** this is for normal users, not the root user.
5
6 # note: it is often useful to set the NAME variable to identify who you are.
7 # the scripts will set up a bogus one for you otherwise.  for example:
8 #   export NAME='Frunkooleon Q. Grendervasp'
9
10 # don't bother running our stuff for dumb terminals, since any echo
11 # can mess with an sftp or scp connection, apparently.  similarly, we
12 # don't want any automatic startup stuff if we are running under PBS.
13 if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
14   # sets up the feisty_meow scripts, using the default locations for all scripts.
15   source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh
16 fi
17