config root man

Current Path : /home/pgsql/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : /home/pgsql/.cshrc

#
# .cshrc - csh resource script, read at beginning of execution by each shell
#

alias h		history 25
alias j		jobs -l
alias la	ls -a
alias lf	ls -FA
alias ll	ls -lA

# A righteous umask
umask 22

set path = (/bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin $HOME/bin)

setenv	EDITOR		vi
setenv	PAGER		less
setenv	BLOCKSIZE	K

setenv	PGLIB		/usr/local/lib
setenv	PGDATA		$HOME/data
#setenv	LANG		ja_JP.eucJP

if ($?prompt) then
	# An interactive shell -- set some stuff up
	set prompt = "`whoami`_`hostname -s`# "
	set filec
	set history = 100
	set savehist = 100
	set mail = (/var/mail/$USER)
	if ( $?tcsh ) then
		bindkey "^W" backward-delete-word
		bindkey -k up history-search-backward
		bindkey -k down history-search-forward
	endif
endif

Man Man