# FILE: .cshrc # # SET PATH set path = ( ~/bin ~/bin/Csh.Scr ~/bin/perl \ ~/bin/$HOSTTYPE \ /usr/ucb \ /bin /usr/bin \ /usr/ccs/bin \ /usr/local /usr/local/bin \ /local/bin \ /usr/bin/X11 /usr/openwin/bin /etc /usr/etc /usr/hosts /u \ bin . \ ) if (! $?DISPLAY) setenv DISPLAY `hostname`:0 echo DISPLAY = $DISPLAY setenv MANPATH /usr/man:/usr/local/man:/usr/share/man setenv PRINTER hap # IF THIS IS NOT AN INTERACTIVE SHELL, EXIT NOW if (! $?prompt) exit (0) #============================================================= # # SET PROMPT (& OTHER THINGS, IF WE'RE SUPER-USER) if ($shell:t == tcsh) then set prompt="%m %~ [%h] " set prompt_flag = "ok" else set prompt = "[\!] `hostname`($user)=> " set prompt_flag endif if (-r ~/.aliases) source ~/.aliases # HISTORY set history=100 set savehist=10 # Prevent unintentional overwrite of files when using `cp' or the > symbol. set noclobber # FILE-COMPLETION set filec set fignore=(.o .out) set autolist # Show all possibilities to complete an input line # set notify