| | #!/bin/sh |
---|
| | # cvscreate.sh - Create And Checkin A New CVS Project |
---|
| | # Copyright (c) 2012 TundraWare Inc,, Des Plaines, IL USA |
---|
| | # $Id: cvscreate.sh,v 1.101 2012/05/24 13:31:51 tundra Exp $ |
---|
| | # $Id: cvscreate.sh,v 1.102 2012/05/24 14:27:52 tundra Exp $ |
---|
| | |
---|
| | ##### |
---|
| | # Constants And Literals |
---|
| | ##### |
---|
| |
---|
| | # Assumes that the containing directory name is the name |
---|
| | # of the project |
---|
| | |
---|
| | PROJNAME=`basename $PWD` |
---|
| | echo $PROJNAME |
---|
| | |
---|
| | ##### |
---|
| | # Process Command Line |
---|
| | ##### |
---|
| |
---|
| | |
|