Last change
on this file since 14263 was 13716, checked in by rick, 8 years ago |
Removing FIB support, used at the 'old' proxies.
Since the only proxy configuration we support is the iLeiden based one, this is
no longer relevant.
|
File size:
908 bytes
|
Rev | Line | |
---|
[10905] | 1 | # $FreeBSD: releng/9.0/etc/root/dot.cshrc 170088 2007-05-29 06:37:58Z dougb $
|
---|
[10900] | 2 | #
|
---|
| 3 | # .cshrc - csh resource script, read at beginning of execution by each shell
|
---|
| 4 | #
|
---|
| 5 | # see also csh(1), environ(7).
|
---|
| 6 | #
|
---|
| 7 |
|
---|
| 8 | alias h history 25
|
---|
| 9 | alias j jobs -l
|
---|
| 10 | alias la ls -a
|
---|
| 11 | alias lf ls -FA
|
---|
| 12 | alias ll ls -lA
|
---|
| 13 |
|
---|
| 14 | # A righteous umask
|
---|
| 15 | umask 22
|
---|
| 16 |
|
---|
[10905] | 17 | set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin $HOME/bin /tools)
|
---|
[10900] | 18 |
|
---|
[10905] | 19 | setenv EDITOR vim
|
---|
[10900] | 20 | setenv PAGER more
|
---|
| 21 | setenv BLOCKSIZE K
|
---|
| 22 |
|
---|
| 23 | if ($?prompt) then
|
---|
| 24 | # An interactive shell -- set some stuff up
|
---|
[10905] | 25 | set prompt = "`/bin/hostname -s`# "
|
---|
| 26 | set filec
|
---|
| 27 | set histfile = /tmp/.history
|
---|
[10900] | 28 | set history = 1000
|
---|
| 29 | set savehist = 1000
|
---|
| 30 | set mail = (/var/mail/$USER)
|
---|
| 31 | if ( $?tcsh ) then
|
---|
| 32 | bindkey "^W" backward-delete-word
|
---|
| 33 | bindkey -k up history-search-backward
|
---|
| 34 | bindkey -k down history-search-forward
|
---|
| 35 | endif
|
---|
| 36 | endif
|
---|
[10920] | 37 |
|
---|
| 38 | if ($?prompt) then
|
---|
[10918] | 39 | [ -x /etc/motd.cshrc ] && source /etc/motd.cshrc
|
---|
[10905] | 40 | endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.