#!/bin/sh if [ ! -e "$HOME/public_cvs" ]; then echo "You do not have $HOME/public_cvs" echo "Run create-cvs" exit 1 fi if [ "x$1" = "x" ]; then echo "Usage: $0 reponame" exit 1 fi mkdir -p $HOME/public_cvs/$1 chmod 1777 $HOME/public_cvs/$1