Help for this page

Select Code to Download


  1. or download this
    open my $fh, '<', 'C:/my_modules.txt' or die "Oops: $!\n";
    while ( <$fh> ) {
      chomp;
      print "Installing $_...\n";
      system ( "ppm", "install", $_ );
    }