swh:1:snp:2ca5d6eff8f04a671c0d5b13646cede522c64b7d
Raw File
Tip revision: ed554bc5e4201344d7eaad78263566e79428759c authored by CSRG on 05 August 1995, 06:30:57 UTC
BSD 4_4_Lite1 release
Tip revision: ed554bc
.cshrc
set history=1000
set path=(/sbin /usr/sbin /bin /usr/bin /usr/contrib/bin /usr/old/bin)

# directory stuff: cdpath/cd/back
set cdpath=(/sys /usr/src/{bin,sbin,usr.{bin,sbin},lib,libexec,share,contrib,local,games,old})
alias	h	history -r
alias	hup	'kill -HUP `cat /var/run/\!$.pid`'
alias	j	jobs -l
alias	k	jobs -l
alias	ll	ls -l
alias	x	exit
alias	z	suspend

alias	back	'set back=$old; set old=$cwd; cd $back; unset back; dirs'
alias	cd	'set old=$cwd; chdir \!*'
alias	pd	pushd
alias	pd2	pushd +2
alias	pd3	pushd +3
alias	pd4	pushd +4
alias	tset	'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'

if ($?prompt) then
	set prompt="`hostname -s`# "
endif

umask 022
back to top