#!/bin/bash # .bashrc-ni-private #------------------------------------------------------------------------------# # # Private stuff for either non-interactive or interactive shells. # #------------------------------------------------------------------------------# # Uncomment the following when tracing shell startup #echo ".bashrc-ni-private run by $$ at `date +'%Y%m%d-%H:%M:%S'`" >> $HOME/suslog #------------------------------------------------------------------------------# # BEGIN "if-def wrap" #------------------------------------------------------------------------------# if [ "$BASHRC_NI_P_DONE" != "$$" ] ; then export BASHRC_NI_P_DONE="$$" # Uncomment the following when tracing shell startup # echo "... $$ setting BASHRC_NI_P_DONE to $BASHRC_NI_P_DONE" >> $HOME/suslog # this is in case you really need to rerun this (e.g. after modifying it) function resetbnip { export BASHRC_NI_P_DONE="" } #------------------------------------------------------------------------------# # BEGIN your stuff goes here #------------------------------------------------------------------------------# # Development Directory (where you "cvs co" stuff) export DEVEL="$HOME/working" export DEV_NGSCRIPTS="$DEVEL/ng-scripts" export DEV_NGSTARTUP="$DEVEL/ng-startup" export AMEX="$DEVEL/AMEXJuneDemo" export AMEX_HOME="$AMEX/install" # HTTP DOCROOT export HTDOC="$HOME/public_html" export TIKITEST="$HTDOC/tikiwiki" # WEBSITE stuff export MIRROR="$HOME/websites" export AWCFAMILY="$MIRROR/awcfamily.com" export ACQTC="$MIRROR/acqtc.com" # SAPGUI stuff export PLATIN_JAVA=/usr/local/j2sdk1.4.2_06/bin/java export PLATIN_JAVA_VER=1.4.2 #------------------------------------------------------------------------------# # ADD personal stuff to PATH #------------------------------------------------------------------------------# add_to_path $HOME/bin #------------------------------------------------------------------------------# # END your stuff goes here #------------------------------------------------------------------------------# #------------------------------------------------------------------------------# # END "if-def wrap" #------------------------------------------------------------------------------# fi