#/bin/sh

if [ ! -d $4 ]; then
  HOME=. cvs -d :pserver:$1 co $2 $3 -d $4 $5
else
  cd $4
  HOME=$6 cvs update -D $3 -dP
  cd $6
fi
