Ticket #298: parrotify_copyright.pl
File parrotify_copyright.pl, 355 bytes (added by allison, 13 years ago) |
---|
Line | |
---|---|
1 | #! /usr/bin/perl -pi |
2 | |
3 | use strict; |
4 | use warnings; |
5 | |
6 | ############################################# |
7 | # |
8 | # usage: parrotify_copyright.pl path/to/dir/* |
9 | # |
10 | ############################################# |
11 | |
12 | s/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: |