Help for this page

Select Code to Download


  1. or download this
    $command_line = "c:\\execu $first_build "; # note trailing space
    $command_line .= join " ", @other_builds;
    $command_line .= " file.c";
    
  2. or download this
    $command_line .= join " ", ("c:\\execu $first_build",@other_builds,"fi
    +le.c");