#!/bin/sh

for i in `cat dirs` ; do

    echo ======== Updating $i ========

    if [ -d $i ] ; then
	pushd $i > /dev/null
	cvs up
	popd > /dev/null
    fi

done

