Help for this page

Select Code to Download


  1. or download this
    # path to program
    my $prog = '/local/path/to/cgi-bin/executableprog';
    ...
    print PROG "$file\n";
    close(PROG);
    
  2. or download this
    my $pid = open PIPE, "-|";
    
  3. or download this
    exec PROG or die "Cannot open pipe to executableprog: $!";