Annotation of home/as/.csh/complete.csh, revision 1.1

1.1     ! as          1: # $Paefchen$
        !             2: 
        !             3: # CSHRC_RELOAD: YES
        !             4: # CSHRC_PROMPTONLY: YES
        !             5: # CSHRC_DESCR: Verfolständingunstabelle neu einlesen
        !             6: 
        !             7: complete kill 'p/*/`ps | awk \{print\ \$1\}`/'
        !             8: complete cd 'p/1/d/'
        !             9: 
        !            10: if (-f ~/.ssh/config) then
        !            11:        set complete_ssh_host=(`awk '/^Host / {print $2}' ~/.ssh/config | tr "\n" " "`)
        !            12:        complete ssh 'p/*/$complete_ssh_host/'
        !            13: endif