#! /bin/csh # - load central setup (see this file for common setup bits) source /cs/local/share/cshrc.common # if this is an interactive shell, set up the terminal if (${?interactive_shell} == 1) then stty echo echoe intr '^c' erase '^?' kill '^u' endif # The default umask creates files which are not readable by group or others # Uncomment the following to make created files readable by group or others umask 022 setenv PATH /cs/home/jas/panic/bin:/cs/home/jas/panic/tools:/cs/local/bin:$HOME/bin:/cs/local/packages/xfce-4.4.1/bin:/cs/local/bin:/cs/fac/bin:${SYSPATH}:.:$PATH #setenv PATH $HOME/bin:/cs/local/bin:/cs/fac/bin:${SYSPATH}:. setenv MANPATH $HOME/man:/cs/local/man:/cs/fac/man:${SYSMANPATH} #alias ls 'ls -FC \!*' # turn on filetype and multicolumn output for ls # The following set of aliases for cd, pushd, popd, and setXwd are # also optional. They display the current working directory in # the title bar of an xterm. if ( ${?DISPLAY} == 1 && ${?interactive_shell} == 1 ) then alias cd 'cd \!* ; setXwd' alias pushd 'pushd \!* ; setXwd' alias popd 'popd ; setXwd' alias setXwd '/cs/local/bin/setXtermTitle "${HOST}:`pwd`"' setXwd endif setenv LS_COLORS "no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:" # Cadence environment stuff (Chris) #source /CMC/scripts/cadence2006a #source /CMC/scripts/setenv.calibre.csh #alias cadence "/CMC/kits/local/bin/startCds -t cmosp18" if ( ${?WHOAMI} == 1 && ${?user} == 1 ) then if ( $WHOAMI != $user ) then # determine home dir for bu user set buhome=`grep ^{$WHOAMI}: /etc/passwd | awk -F: '{ print $6 }'` set prompt="[bu: $WHOAMI] $prompt" #set home="$buhome" #cd ~ endif endif if ( $HOST == "speech" ) then setenv PATH /tmp/Spin/bin:$PATH endif if ( $HOST == "amsterdam" ) then setenv PATH /tmp/GPUmat:/tmp/GPUmat/bin:/local/share/packages/cuda-3.1/bin:$PATH setenv LD_LIBRARY_PATH /local/share/packages/cuda-3.1/lib setenv CUDA_ROOT /local/share/packages/cuda-3.1 endif