#!/bin/sh -f ## ## cvs.u [-guest] [...] ## ## cvs.u sends a cvs command to the remote cvs repository that contains the ## utilib software package. If the '-guest' option is used, you can checkout ## software but you cannot commit changes back into the repository. ## CVSROOT= CVS_RSH=ssh-utilib export CVS_RSH # This trick is needed for the script to work under UWIN cvs=`which cvs | grep cvs` if [ "$1" = "-guest" ]; then shift $cvs -d :ext:GUEutili@gaston.cs.sandia.gov:/usr/local/cvs/cvsroot $* else $cvs -d :ext:DEVutili@gaston.cs.sandia.gov:/usr/local/cvs/cvsroot $* fi