in reply to Re: Re: executing commands and getting output
in thread executing commands and getting output
The quotes around command are backticks (ASCII 96, hex 60), not single quotes.$output = `command`; # ^ ^ # | |
As an alternative, you may use
$output = qx(command);
|
|---|