#!/local/bin/perl -wi.bak

# $Id: splitCopyright,v 1.2 1994/11/17 16:00:36 svein Exp $

# Split blab comment line so that CVS Id string and Copyright date are
# placed on separate lines in the Copyright comment.
while (<>) {
  if (/Id.*Copyright/) {
    split(/, Copyright/);
    print "@_[0]\n        Copyright@_[1]";
    next;
  }
  print
}


