blob: 31cdf6fc205af6073b1b6a977c169b2fd43ada83 (
plain)
- #!c:\vanilla-perl\perl\bin\perl
- # Use this script to convert the beginnings of files to the path to ActivePerl
- # if you are installing with Vanilla Perl.
- opendir DIR, ".";
- @perlfiles = grep /\.pl/, readdir DIR;
- closedir DIR;
- foreach $file (@perlfiles) {
- open FH, '+<', "$file";
- @file = <FH>;
- seek( FH, 0, 0 );
- truncate( FH, 0 );
- $line = shift @file;
- if ($line =~ /^#!/) {
- print FH "#!c:\\vanilla-perl\\perl\\bin\\perl\n";
- } else {
- print FH $line;
- }
- print FH @file;
- close(FH);
- }
|