[BACK]Return to dot.cshrc CVS log [TXT][DIR] Up to [local] / src / share / skel

Annotation of src/share/skel/dot.cshrc, Revision 1.4

1.1       deraadt     1: # .cshrc initialization
                      2:
                      3: alias df       df -k
                      4: alias du       du -k
                      5: alias f                finger
                      6: alias h                'history -r | more'
                      7: alias j                jobs -l
                      8: alias la       ls -a
                      9: alias lf       ls -FA
                     10: alias ll       ls -lgsA
                     11: alias tset     'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
                     12: alias z                suspend
                     13:
1.4     ! deraadt    14: set path = (~/bin /bin /usr/{bin,local/bin,games} .)
1.1       deraadt    15:
                     16: if ($?prompt) then
                     17:        # An interactive shell -- set some stuff up
                     18:        set filec
                     19:        set history = 1000
                     20:        set ignoreeof
                     21:        set mail = (/var/mail/$USER)
                     22:        set mch = `hostname -s`
1.2       deraadt    23:        alias prompt 'set prompt = "$mch:q"":$cwd:t {\!} "'
                     24:        alias cd 'cd \!*; prompt'
                     25:        alias popd 'popd \!*; prompt'
                     26:        alias pushd 'pushd \!*; prompt'
                     27:        cd .
                     28:        umask 22
1.1       deraadt    29: endif