6c2b67f9ec1b78815a3465a64b9e42d03e9f0f10
[feisty_meow.git] / scripts / examples / feisty_meow_startup / bashrc_user
1
2 # in addition to the .bashrc code that the operating system gives you,
3 # you can add this file to your ~/.bashrc if you want the feisty_meow scripts
4 # to be loaded up automatically.
5 #
6 # this is for normal users, not the root user!
7
8 # note: it is useful to set your own NAME variable to identify who you are.
9 # the feisty_meow scripts will set up a bogus one for you otherwise.  in your home
10 # directory's .bashrc, you could add something like this, for example:
11 #   export NAME='Doodmodeus Q. Nornberton'
12
13 # don't bother running our stuff for a dumb terminal since any echo
14 # can mess with an sftp or scp connection, apparently.  similarly, we
15 # don't want any automatic startup stuff if we are running under PBS.
16 if [ "${TERM}" != "dumb" -a -z "$PBS_ENVIRONMENT" ]; then
17   # sets up the feisty_meow scripts, using the default locations for all scripts.
18   source $HOME/feisty_meow/scripts/core/launch_feisty_meow.sh
19 fi
20