Help for this page

Select Code to Download


  1. or download this
    my $prog = 'myprog';
    my $file = 'myfile';
    ...
    
    print join(" ", "system():", "/path/to/$prog", '-foo', @useropts, $fil
    +e, '-o', "$file.out"), "\n";  # debug
    system("/path/to/$prog", '-foo', @useropts, $file, '-o', "$file.out");