#!/bin/sh -f ## ## cvs.s [-guest] [...] ## ## cvs.s sends a cvs command to the remote cvs repository that contains the ## sgopt 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-sgopt 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:GUEsgopt@gaston.cs.sandia.gov:/usr/local/cvs/cvsroot $* else $cvs -d :ext:DEVsgopt@gaston.cs.sandia.gov:/usr/local/cvs/cvsroot $* fi