Help for this page

Select Code to Download


  1. or download this
    open (my $call, '-|', "$command 2>&1");
    $output = join //, <$call>;
    # or use { local $/; $output = <$call>; }
    close ($call);