#! /bin/sh
if test x"$1" = x"-d"; then CVSFLAGS="$CVSFLAGS "-d; shift; fi
set -- `find "${@-.}" -type d ! -type l -exec cvsdir {} \; -prune -print`
for d in ${1+"$@"}; do
    (echo "$d": && cd "$d" && cvs -q update $CVSFLAGS)
done
