dot.cshrc revision 1.5
11.5Stsutsui# $NetBSD: dot.cshrc,v 1.5 2011/10/19 10:14:35 tsutsui 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.5Stsutsui#setenv EDITOR vi 131.5Stsutsui#setenv VISUAL ${EDITOR} 141.5Stsutsui#setenv PAGER more 151.1Ssimonb 161.4Scubeset path = (~/bin /bin /sbin /usr/{bin,sbin,X11R7/bin,X11R6/bin,pkg/{,s}bin,games} \ 171.1Ssimonb /usr/local/{,s}bin) 181.1Ssimonb 191.1Ssimonbif ($?prompt) then 201.1Ssimonb # An interactive shell -- set some stuff up 211.1Ssimonb set filec 221.1Ssimonb set history = 1000 231.1Ssimonb set ignoreeof 241.1Ssimonb set mail = (/var/mail/$USER) 251.1Ssimonb set mch = `hostname -s` 261.1Ssimonb set prompt = "${mch:q}: {\!} " 271.1Ssimonbendif 28