Ticket #298: parrotify_copyright.pl

File parrotify_copyright.pl, 355 bytes (added by allison, 13 years ago)

Script for updating copyright in repository.

Line 
1#! /usr/bin/perl -pi
2
3use strict;
4use warnings;
5
6#############################################
7#
8# usage: parrotify_copyright.pl path/to/dir/*
9#
10#############################################
11
12s/The Perl Foundation/Parrot Foundation/;
13
14# Local Variables:
15#   mode: cperl
16#   cperl-indent-level: 4
17#   fill-column: 100
18# End:
19# vim: expandtab shiftwidth=4: