# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
times=`who | grep -c "^$LOGNAME "`
if [ $times -gt 7 ]; then
echo "Sorry you have exceeded your 2 login limit."
echo "Exiting now..."
sleep 5
kill -9 $$
fi
$date
cd /uv/cubs/dataabse
exec /uv/bin/uv
|