Help for this page

Select Code to Download


  1. or download this
    my $err_stat = system( $prog, @args );
    die "system failed on $prog @args: $?" if $err_stat;
    
  2. or download this
    system( "$prog @args" );
    
  3. or download this
    system( $prog, @args );