mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
11 lines
233 B
Perl
Executable file
11 lines
233 B
Perl
Executable file
#!/usr/bin/perl -pi
|
|
|
|
use warnings;
|
|
use strict;
|
|
use autodie qw(:all);
|
|
|
|
if (/^ ?(?:\w+ )?Copyright / || /^All rights reserved\.$/ || /^(?:The )?\S+ License(?: \(.+?\))?$/ || /^$/) {
|
|
$_ = ""
|
|
}
|
|
|
|
s/Google Inc\./the copyright holder/g
|