mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-15 22:09:31 -04:00
10 lines
346 B
Perl
10 lines
346 B
Perl
#!/usr/local/bin/perl -w
|
|
|
|
if (@ARGV == 0) {
|
|
die "usage: merge_copyrights <copyrights_database>";
|
|
}
|
|
|
|
# Build a list of files, and then merge it into the copyrights database.
|
|
# Notice if a file goes away. If the file isn't in the database, add it
|
|
# with the current year. Notice if the year a file was last modified
|
|
# is not in the database.
|