File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / root.skel / cshrc
Revision 1.3.14.2: download - view: text, annotated - select for diffs - revision graph
Mon Jan 27 23:51:01 2014 UTC (10 years, 5 months ago) by misho
Branches: elwix2_2
Diff to: branchpoint 1.3: preferred, unified
add new config for elwix tftp host

    1: # ELWIX customized cshrc
    2: #
    3: # $Id: cshrc,v 1.3.14.2 2014/01/27 23:51:01 misho Exp $
    4: 
    5: alias h		history 250
    6: alias j		jobs -l
    7: alias ls	ls -GF
    8: alias la	ls -al
    9: alias lf	ls -FA
   10: alias ll	ls -lioA
   11: alias l		ls -lF
   12: alias su	su -m
   13: 
   14: setenv	EDITOR	vi
   15: setenv	VISUAL	${EDITOR}
   16: setenv	EXINIT	'set autoindent'
   17: setenv	PAGER	more
   18: 
   19: #setenv LANG		bg_BG
   20: #setenv	LANGUAGE	bg
   21: #setenv	LC_ALL		C
   22: #setenv	LC_CTYPE	bg_BG.CP1251
   23: 
   24: #setenv ELWIX_UPGRADE_HOST	10.254.254.253
   25: 
   26: set path = (~/bin /{,s}bin /usr/{,s}bin /usr/X11R6/{,s}bin /usr/local/{,s}bin /elwix/pkg/{,s}bin)
   27: 
   28: #alias keyon	ssh-add -t 10800
   29: #alias keyoff	ssh-add -D
   30: #alias keylist	ssh-add -l
   31: #if (! $?SSH_CLIENT) then
   32: #	source ~/.ssh-agent
   33: #	keyon
   34: #endif
   35: 
   36: if ($?prompt) then
   37: 	set term = xterm-color
   38: 	# An interactive shell -- set some stuff up
   39: 	set filec
   40: 	set history = 1000
   41: 	set savehist = 1000 merge
   42: 	set histfile = ~/.tcsh_history
   43: #	set ignoreeof
   44: #	set correct = complete
   45: #	set histdup = all
   46: 	set autolist
   47: 	set autoindent
   48: 	set autocorrect
   49: 	set correct = cmd
   50: 	set color
   51: 	set nobeep
   52: 	set mail = (/var/mail/$USER)
   53: #	set mch = `hostname -s`
   54: #	set prompt = "${mch:q}: {\!} "
   55: 	set prompt = "%n@%m:%B%~%b %U%l%u=%S%?%s %T%# "
   56: 	if ( $?tcsh ) then
   57: 		bindkey "^W" backward-delete-word
   58: 		bindkey -k up history-search-backward
   59: 		bindkey -k down history-search-forward
   60: 	endif
   61: 
   62: # FreeBSD TCL
   63: 	setenv TCLLIBPATH /usr/local/lib/tcl8.5
   64: # NetBSD TCL
   65: #	setenv TCLLIBPATH /usr/pkg/lib/tcl
   66: # OpenBSD TCL
   67: #	setenv TCLLIBPATH /usr/local/lib/tcl
   68: endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>