umask 002
limit core 0
##################################### 
# Settings in csh
##################################### 
# set time = 15 
# system time, user time, wall clock time, page faults (pf) + swaps, io
set ignoreeof
set notify
# notify me when the status of job completions
set history = 200
# set savehist = 200
# saves commands into .history to be resource (-h) when login again
set noclobber
#  to insures that > is not sent to existing files
#  and  >> is not sent to non-existing files
# set noglob 
# prohibits filename expansion like ? and *
set filec
set fignore = (.o .h .aux .bbl .blg .dvi .log .lof .lot .toc .Z)
# filename compeltion enabled with .o and .h suffix ignored
# filec for file name completion
set mail = "/usr/spool/mail/$USER"
set path =   (. /usr/bin/X11 /usr/ucb /bin /usr/bin /usr/new /usr/local/bin \
              /usr/local /usr/doctools/bin $home/bin /s3/user4/frame2.0/bin \
              /usr/local/bin \
              )
# cd looks here if . does not have directory
####################################
# X windows stuff
####################################
set xbase=/s3/user3/X11/more.X11
# alias xa      'set path=($xbase/bin/X11 $path); rehash; xinit awm -e ~/.awm.startup -- Xsun -fp $xbase/lib/X11/fonts'
# alias xt      'set path=($xbase/bin/X11 $path); rehash; xinit twm -- Xsun'
# alias xtex    texx2 -mag 1000 -dpi 85 
# alias xtr     'xset +fp /usr/lib/X11/fonts/cmr; xset fp rehash'
# alias xu      'set path=($xbase/bin/X11 $path); rehash; xinit uwm -- Xsun'
####################################
# normal aliases
####################################
alias lo        logout
alias c         clear
alias cp        cp -i
alias f         finger
alias h         history
alias j         jobs
alias ip        imprint -P4
alias it        iptex -P4
# alias ipr     ipr -P4 
alias iq        ipq4
alias kill      kill -9
alias ls        ls -F
alias ll        ls -lasg
alias mv        mv -i
alias more      less
alias m         mail -n -U
# -n do not start up reading from /usr/lib/Mail.rc
# -U convert UUCP addresses to internet standard
# alias nice    /bin/nice -12
alias prt       prt -nohead -P4
alias r         'rsh vax'
alias rm        'mv \!* /tmp/cllee'
# alias rr      'alias rm "mv \\!* /tmp/cllee"'
# alias unrm    'mv /tmp/cllee/\!* .'
alias sc        source ~/.cshrc
alias sl        source ~/.login
####################################
# aliases that deals with the prompt
####################################
# set prompt="$my_host : $cwd:t \! % "
if (! $?prompt) exit
set my_host = `hostname | sed -e 's/.csrd.uiuc.edu//' -e 's/uicsrd//'`
setenv DISPLAY "$my_host":0
set prompt="$my_host : $cwd:t % "
alias cd        'setenv old $cwd; chdir \!*; set prompt="$my_host : $cwd:t % "'
alias back      'setenv t $old; cd $t'
alias po        'popd; set prompt="$my_host : $cwd:t % "'
alias pu        'pushd \!*; set prompt="$my_host : $cwd:t % "'
####################################
# parafrase stuff
####################################
alias fmake     clmake f
alias cmake     clmake c
alias co        co -l
alias ci        ci -u
# alias eh      source $home/bin/rec.csh
# alias lisp    '/s1/user2/macsyma_309/franz/bin/lisp'
# alias lq      lpq -Plp2
# alias ppr     pubpr -P ps1
# alias scrimp  'screendump | srimp > \!*'
# alias wi      'find /* -name \!* -exec ls -lasgF {} \; | grep !\* > wi_out &'
alias bibtex    /usr/local/tex/bin/bibtex.old


1