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