Help for this page

Select Code to Download


  1. or download this
    my $return = `path_to_script`;
    
  2. or download this
     my $pid = open( CHILD, " $command |" );
    my $return = <CHILD>;