Initial commit of additional CVS management utilities for use with CVS file copies

git-svn-id: svn://10.0.0.236/trunk@235455 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
justdave%bugzilla.org 2007-09-10 17:41:03 +00:00
parent 03b9c3dd76
commit dc133ae3f7
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#!/usr/bin/perl
while (my $line = <STDIN>) {
if ($line =~ /^(\S+)\s(\S+)$/) {
print "Copying $1 -> $2 ...\n";
system("/opt/cvsmgmt/copy-cvs-file.pl -d $1,v $2,v");
}
}

View File

@ -0,0 +1,7 @@
#!/usr/bin/perl
while (my $line = <STDIN>) {
if ($line =~ /^(\S+)\s(\S+)$/) {
system("/opt/cvsmgmt/copy-cvs-file.pl -n $1,v $2,v");
}
}