Changeset View
Changeset View
Standalone View
Standalone View
head/bin/csh/dot.cshrc
| # $FreeBSD$ | # $FreeBSD$ | ||||
| # | # | ||||
| # .cshrc - csh resource script, read at beginning of execution by each shell | # .cshrc - csh resource script, read at beginning of execution by each shell | ||||
| # | # | ||||
| # see also csh(1), environ(7). | # see also csh(1), environ(7). | ||||
| # more examples available at /usr/share/examples/csh/ | # more examples available at /usr/share/examples/csh/ | ||||
| # | # | ||||
| alias h history 25 | alias h history 25 | ||||
| alias j jobs -l | alias j jobs -l | ||||
| alias la ls -aF | alias la ls -aF | ||||
| alias lf ls -FA | alias lf ls -FA | ||||
| alias ll ls -lAF | alias ll ls -lAF | ||||
| # read(2) of directories may not be desirable by default, as this will provoke | |||||
| # EISDIR errors from each directory encountered. | |||||
| # alias grep grep -d skip | |||||
| # A righteous umask | # A righteous umask | ||||
| umask 22 | umask 22 | ||||
| set path = (/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin $HOME/bin) | set path = (/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin $HOME/bin) | ||||
| setenv EDITOR vi | setenv EDITOR vi | ||||
| setenv PAGER less | setenv PAGER less | ||||
| Show All 20 Lines | |||||