# Stewart's .tcshrc # #echo $TERM_PROGRAM #if (-z "$TERM_PROGRAM") then # setenv TERM_PROGRAM xterm #endif source /usr/share/tcsh/examples/rc # Apple's extra DevTools binaries setenv PATH "/usr/bin:${PATH}:/Developer/Tools/" # for smlnj if (-d "/usr/local/sml") then setenv PATH "${PATH}:/usr/local/sml/bin" endif setenv PATH "${PATH}:/usr/local/bin:/opt/local/bin:/usr/local/teTeX/bin/powerpc-apple-darwin-current:/opt/local/pgsql/bin" # my local CVSROOT setenv CVSROOT ~/cvsroot setenv PAGER less if ($?prompt) then alias precmd 'echo -n "]0;$PWD"' endif alias ls ls-F # allow a cool list of hostnames for boxen :) # one day i have to pull this from dns :) alias list_all_hostnames echo `grep '^Host [^\*]' ~/.ssh/config | sed -n 's/^Host //;p'` `grep -v "^#" /etc/hosts`