|
|
| No such thing as a small change | |
| PerlMonks |
Why can't I get the output of a command with system()?by faq_monk (Initiate) |
| on Oct 08, 1999 at 00:29 UTC ( #729=perlfaq nodetype: print w/ replies, xml ) | Need Help?? |
|
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version:
You're confusing the purpose of
$exit_status = system("mail-users");
$output_string = `ls`;
|
|