Tagged Questions
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 ...
7
votes
4answers
2k views
What's the differences between system and backticks and pipes in Perl?
Perl supports three ways (that I know of) of running external programs:
system:
system PROGRAM LIST
as in:
system "abc";
backticks as in:
`abc`;
running it through a pipe as in:
open ...
5
votes
2answers
1k views
How to flush output in backticks In Perl?
If I have this perl app:
print `someshellscript.sh`;
that prints bunch of stuff and takes a long time to complete, how can I print that output in the middle of execution of the shell script?
...
3
votes
4answers
112 views
How to capture both STDOUT and STDERR in two different variables using Backticks in Perl
Let's say I want to run an external program from my script with backticks and at the same time I want to capture both STDOUT and STDERR but in two different variables. How can I do that? For istance ...
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
1answer
231 views
perl: Here documents inside backtick operator
Given a program utility that takes commands from stdin and returns a useful exit code, this perl syntax works:
my $result = `utility -switch1 -switch2 <<HERE
set ridin_round_the_world TRUE;
do ...
2
votes
5answers
742 views
Escape whitespace when using backticks
I've had a search around, and from my perspective using backticks is the only way I can solve this problem. I'm trying to call the mdls command from Perl for each file in a directory to find it's last ...
2
votes
3answers
1k views
Why does my Perl backticks complain “sh: line 1: any: command not found”?
I've never programmed before, but needed to write a very simple webapp for work.
I'm trying to get this dig query to work:
dig @8.8.8.8 +nocomments +nostats +noquestion +nocmd google.com any
With ...
1
vote
3answers
94 views
Dynamic Perl find and replace using grep inside backticks
I am trying to do a dynamic search and replace with Perl on the command line with part of the replacement text being the output of a grep command within backticks. Is this possible to do on the ...
1
vote
2answers
108 views
Inability to capture output from “dd” using backticks
I've been working with a very old Solaris system and not in a position to add more modules to make my life easier, and I'm working with a number of scripts that use various command line options.
The ...
1
vote
3answers
362 views
perl two consecutive back ticked shell command do not run
I am trying to write perl script for managing amazon ec2 instances. In part of my code, I have two shell commands, and when I invoke them, the first runs but not the second. I cannot seem to find a ...
1
vote
1answer
207 views
Problem with backticks in multi-threaded Perl script on Windows
I have a trouble with the following very simple and small Perl script on Windows platform.
use strict;
use warnings;
use threads;
use threads::shared;
my $print_mut : shared;
my $run_mut : shared;
...
1
vote
1answer
127 views
How do I receive command output immediately?
I'm using perl back-ticks syntax to run some commands.
I would like the output of the command to written to a file and also printed out to stdout.
I can accomplish the first by adding a > at the ...
0
votes
4answers
1k views
perl backticks: use bash instead of sh
I noticed that when I use backticks in perl the commands are executed using sh, not bash, giving me some problems.
How can I change that behavior so perl will use bash?
PS. The command that I'm ...
0
votes
2answers
184 views
Perl regex matching output from `w -hs` command
I'm trying to write a Perl script that will work better with KDE's kwrited, which, as far as I can tell, is connected to a pts and puts every line it receives through the KDE system tray notifications ...