#
# Copyright (c) 1990 Universities Research Association, Inc.        
#       All Rights Reserved                                                    
#
#
# This material resulted from work developed under a Government Contract and   
# is subject to the following license:  The Government retains a paid-up,      
# nonexclusive, irrevocable worldwide license to reproduce, prepare derivative 
# works, perform publicly and display publicly by or for the Government,       
# including the right to distribute to other Government contractors.  Neither  
# the United States nor the United States Department of Energy, nor any of     
# their employees, makes any warrenty, express or implied, or assumes any      
# legal liability or responsibility for the accuracy, completeness, or         
# usefulness of any information, apparatus, product, or process disclosed, or  
# represents that its use would not infringe privately owned rights.

# .cshrc default settings for all users

# @(#) stdcshrc 1.11 Delta: 96/03/15 15:01:45 Extraction 96/03/26 10:56:31 @(#)

# execute fermi.cshrc first
if ( -r /usr/local/etc/fermi.cshrc ) then
	source /usr/local/etc/fermi.cshrc
endif

# execute group.cshrc if it exists, this is for group customization
if ( -r /usr/local/etc/group.cshrc ) then
	source /usr/local/etc/group.cshrc
endif

# Place any items that you want executed even for non-interactive use here

#skip if not interactive shell
if ( $?USER == 0 || $?prompt == 0 ) exit


set noclobber            #prevent overwrite when redirecting output
set ignoreeof            #prevent accidental logouts

# Have mail point to fermimail which is a Berkely mail version. Some packages
# expect mail to be a System V version of mail. If you are having problems
# of this type, you may need to remove the alias.
alias mail          fermimail       #Fermi recommended Mail

#Define various aliases; user selects desired alias by removng the # sign 
#alias a            alias
#alias killit       kill -9         #guarantees that a process is killed
#alias h            'history | tail'
#alias ll           ls -l
#alias la           ls -a           #see hidden files
#alias lf           ls -CF          #check file TYPE (exe, dir ..)
#alias rmi          rm -i           #confirm before deletion
#alias home         cd              #HOME
#alias side         'cd ../\!*'     #side
#alias down         'cd \!*'        #down
#alias up           cd ..           #up
#alias cpi          cp -i           #no overwrite of output file
#alias cd          'cd \!*;echo $cwd'
#alias mvi          mv -i           #confirm before moving
#Next alias replaces standard info command on SGI platforms
#alias info         Info            #get list of info articles
#
#VMS type commands
#
#alias dir          ls -l
#alias copy         cp
#alias rename       mv
