dot.cshrc revision 1.4
11.4Scube# $NetBSD: dot.cshrc,v 1.4 2008/11/19 18:07:20 cube Exp $ 21.3Sperry# 31.3Sperry# This is the default .cshrc file. 41.3Sperry# Users are expected to edit it to meet their own needs. 51.3Sperry# 61.3Sperry# The commands in this file are executed each time a new csh shell 71.3Sperry# is started. 81.3Sperry# 91.3Sperry# See csh(1) for details. 101.3Sperry# 111.1Ssimonb 121.1Ssimonbalias h history 25 131.1Ssimonbalias j jobs -l 141.1Ssimonbalias la ls -a 151.1Ssimonbalias lf ls -FA 161.1Ssimonbalias ll ls -lA 171.1Ssimonbalias su su -m 181.1Ssimonb 191.1Ssimonbsetenv EDITOR vi 201.1Ssimonbsetenv VISUAL ${EDITOR} 211.1Ssimonbsetenv EXINIT 'set autoindent' 221.1Ssimonbsetenv PAGER more 231.1Ssimonb 241.4Scubeset path = (~/bin /bin /sbin /usr/{bin,sbin,X11R7/bin,X11R6/bin,pkg/{,s}bin,games} \ 251.1Ssimonb /usr/local/{,s}bin) 261.1Ssimonb 271.1Ssimonbif ($?prompt) then 281.1Ssimonb # An interactive shell -- set some stuff up 291.1Ssimonb set filec 301.1Ssimonb set history = 1000 311.1Ssimonb set ignoreeof 321.1Ssimonb set mail = (/var/mail/$USER) 331.1Ssimonb set mch = `hostname -s` 341.1Ssimonb set prompt = "${mch:q}: {\!} " 351.1Ssimonbendif 36