summaryrefslogtreecommitdiff
path: root/dists/win32/shebang-vanilla.pl
blob: 31cdf6fc205af6073b1b6a977c169b2fd43ada83 (plain)
  1. #!c:\vanilla-perl\perl\bin\perl
  2. # Use this script to convert the beginnings of files to the path to ActivePerl
  3. # if you are installing with Vanilla Perl.
  4. opendir DIR, ".";
  5. @perlfiles = grep /\.pl/, readdir DIR;
  6. closedir DIR;
  7. foreach $file (@perlfiles) {
  8. open FH, '+<', "$file";
  9. @file = <FH>;
  10. seek( FH, 0, 0 );
  11. truncate( FH, 0 );
  12. $line = shift @file;
  13. if ($line =~ /^#!/) {
  14. print FH "#!c:\\vanilla-perl\\perl\\bin\\perl\n";
  15. } else {
  16. print FH $line;
  17. }
  18. print FH @file;
  19. close(FH);
  20. }