Revision 6956,
345 bytes
checked in by probe, 31 years ago
(diff) |
Initial revision
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #!/bin/csh -f |
---|
2 | set name=$1 |
---|
3 | shift |
---|
4 | if ($#argv) then |
---|
5 | set files="$*" |
---|
6 | else |
---|
7 | set files="RCS/*,v" |
---|
8 | endif |
---|
9 | foreach filename ($files) |
---|
10 | echo "Checking in file " $filename "..." |
---|
11 | set rev=`rlog -h $filename|sed -n '/^head:/s/^head:[^0-9]*\([0-9]*\.[0-9]*\)$/\1/p'` |
---|
12 | rcs -N$name":"$rev $filename |
---|
13 | echo "Done processing " $filename "..." |
---|
14 | end |
---|
15 | echo "Done." |
---|
Note: See
TracBrowser
for help on using the repository browser.