Help for this page

Select Code to Download


  1. or download this
    
    use strict;
    ...
    # To check for errors
    print "$script_exe\n";
    
  2. or download this
    my $script_exe = `perl perl_script_to_run input output`;
    
  3. or download this
    my $cmd = "perl script_to_execute input output";
    
    print STDERR "$cmd\n";
    system($cmd);