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

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

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 su       su -m
                     12: alias tset     'set noglob histchars=""; eval `\tset -s \!*`; unset noglob histchars'
                     13: alias x                exit
                     14: alias z                suspend
                     15:
1.3     ! fn         16: set path = (~/bin /bin /usr/{bin,host,local/bin,games} .)
1.1       deraadt    17:
                     18: if ($?prompt) then
                     19:        # An interactive shell -- set some stuff up
                     20:        set filec
                     21:        set history = 1000
                     22:        set ignoreeof
                     23:        set mail = (/var/mail/$USER)
                     24:        set mch = `hostname -s`
1.2       deraadt    25:        alias prompt 'set prompt = "$mch:q"":$cwd:t {\!} "'
                     26:        alias cd 'cd \!*; prompt'
                     27:        alias popd 'popd \!*; prompt'
                     28:        alias pushd 'pushd \!*; prompt'
                     29:        cd .
                     30:        umask 22
1.1       deraadt    31: endif