xref: /386bsd/usr/lynne/.cshrc (revision a2142627)
1unset histchars
2set histchars=',;%'
3set histchars='!^%'
4if ($?prompt) then
5	set mail=/usr/spool/mail/$USER
6	switch  ($prompt:q)
7		case '# ':
8		set prompt="`hostname -s` \! # "
9		breaksw
10		default:
11		set prompt="`hostname -s` \! % "
12	endsw
13	set	cdpath=(/sys ~/working /usr/src)
14	set	ignoreeof
15	set	history=60
16	alias tset 'set xx=$histchars; set histchars=""; unset history; /usr/ucb/tset -s -Q \!*  > /tmp/tset$$ ; source /tmp/tset$$ ; rm /tmp/tset$$; set history=60; set histchars=$xx; unset xx'
17	alias a alias
18	a	ls	'ls -F'
19	alias	setup	'sccs admin -i \!:1 < \!:1'
20	a . 'cd; cd'
21	a mail Mail
22	a pwd 'echo $cwd'
23	a so source
24	a j jobs
25	a h history
26	a pd pushd
27	a p popd
28	a tag 'vi -ta \!*'
29	a nd	'nm -nr \!* | grep " [DBdb] " | more'
30	a reset	'reset ; stty -tabs'
31	a RESET reset
32endif
33