blob: 81905a4645381b0b8e9f917e32cfb6bc186ecce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# this file is processed on every csh invocation
# set PATH and MANPATH based on machine type
eval `/usr/local/bin/defaultpaths -csh`
# set default file/directory creation protection
umask 027
setenv ENTOMB yes
# skip the rest if the shell is non-interactive, i.e. is running a script
if ( ! $?prompt ) exit
set prompt = "`shorthostname` \! % "
set history = 50
set notify = on
alias mail mailx
|