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

echo who:
who

echo processes:
ps -j

if ( $?CLIPBRD ) then
  echo "GEM login...";
  ~/.gemlogin;
else
  echo "tty login...";
endif

#eof