#!/usr/bin/perl # # Remove internal information, add Apple License # $^I = ""; $license =<) { if ($in_header) { next if /^\s*Version:/; # Omit Version: line s/(Copyright:\s*).*/\1© 2002-2003 Apple Computer, Inc. All rights reserved./; if (/^\s*File Ownership/) { print $license; $in_header = 0; $skip_header = 1; next; } print; } elsif ($skip_header) { if (m|\*/|) { print; $skip_header = 0; } } else { print; $in_header = 1 if eof; } }