# ~/.tcshrc: executed by tcsh(1) for non-login shells.

# User specific aliases and functions

if ( $?prompt ) then

  if ( "$TERM" == "xterm" ) then
    alias cwdcmd 'echo -n "\033]2;`hostname -s`:${PWD}\007\033]1;${HOST}\007"'
    cwdcmd
  endif

  if ( -e ~/.alias )    source ~/.alias

endif

