Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for (@rprtname) {
        `perl $generatorDir/$_.pl`;
    }
    
  2. or download this
        system "perl $generatorDir/$_.pl" and die "Error running $_.pl $?"
    +;