|
|
| Problems? Is your data what you think it is? | |
| 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 ( [id://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`;
|
|