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

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

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:
                     16: set path = (~/bin /bin /usr/{bin,new,games,local,old} .)
                     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`
                     25:        set prompt = "$mch:q:$cwd:t {\!} "
                     26:        umask 2
                     27: endif