#!/bin/bash
#
# ~/.bash_login, this file will be read by /bin/bash when invoked as login shell
#
echo executing ~/.bash_login

echo setting PATH...
PATH=.:/bin:/usr/ucb:/usr/bin:/usr/local/bin:/usr/etc
export PATH

echo who:
who

echo processes:
ps -j

PS1="$(whoami)@$(hostname)"'$PWD>'

if [ ! $CLIPBRD ]
then
  #login from telnet, terminal, modem, ...
  echo "tty login..."

else
  echo "GEM login..."
  ~/.gemlogin
fi
