Help for this page

Select Code to Download


  1. or download this
    my $stdout_and_stderr1;
    my $stdout_and_stderr2;
    ...
       print "running script2.pl\n";
    
       ...
    
  2. or download this
    $stdout_and_stderr1 = `script1.pl 2>&1`;
    $stdout_and_stderr2 = `script2.pl 2>&1`;
    $stdout_and_stderr3 = `script3.pl 2>&1`;