Tagged Questions
The qx tag has no wiki summary.
7
votes
2answers
328 views
How do I mock Perl's built-in backticks operator?
I'd like to unit test a Perl program of mine that is using backticks. Is there a way to mock the backticks so that they would do something different from executing the external command?
Another ...
3
votes
7answers
5k views
How do I get the output of curl into a variable in Perl if I invoke it using backtics?
I'm trying to get the response of a curl call into a variable in perl.
my $foo = `curl yadd yadda`;
print $foo;
does not work. When I run this at the command line the curl call prints all its ...
2
votes
3answers
285 views
How to use __FILE__ inside qx?
I'm trying to assign a constant at the top of a Perl script like so:
use constant {
# ...
CONSTNAME => qx{readlink -e __FILE__} || __FILE__,
# ...
};
__FILE__ does not get interpolated ...
2
votes
2answers
345 views
Fork in perl but get exit status from a system call in the child process
What I do:
Make an ajax call to a cgi script.
Cgi script forks but the parent returns right away with a response msg.
The child does a system call but needs the exit code and any error messages.
...
1
vote
1answer
263 views
How can I implement a timeout for a qx(command)?
How could I implement in this piece of code a timeout: if the "hwinfo --usb"-command didn't return anything after a certain amount of time, ( stop the command and ) do a return or die from the sub ...
0
votes
5answers
655 views
How can I change the standard output filehandle for a system call in Perl?
I am trying change the stdout of the system function using select. But it does not seem to be working. The system output is getting displayed on console rather than getting redirected to the file.
...