#!/bin/csh -f

setenv CVSROOT dumb.cygnus.com:/local/cvsfiles
foreach i (`find kerberos/src -type d -print`)
        if ($i:t == CVS) then
                echo skipping CVS
        else if ($i:t == .) then
                echo skipping .
        else if ($i:t == ..) then
                echo skipping ..
        else
                echo $i; (cd $i; pwd; cvs update -l .)
        endif
end
