Help for this page

Select Code to Download


  1. or download this
    foreach ($firstbuild, @otherbuilds)
    {
        system (qq(C:/execu $_ file.c));
    }
    
  2. or download this
    open (OUT, ">cmd.txt") || die "$!\n";
    foreach ($firstbuild, @otherbuilds)
    ...
    }
    close OUT;
    system ("cmd.txt");