Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: Effect of redirecting output to /dev/null on $? value

by ikegami (Patriarch)
on Aug 03, 2020 at 17:01 UTC ( [id://11120261]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Effect of redirecting output to /dev/null on $? value
in thread Effect of redirecting output to /dev/null on $? value

How is the command executed if the shell is not invoked?

By asking to system execute the specified program instead of asking the system to execute /bin/sh.

Why does adding a redirect to /dev/null increase the complexity enough to invoke the shell?

There's no point in including an entire shell in Perl. I don't know exactly what part of shell command parsing is implemented in Perl.

Finally, what method is used to execute the command if I had instead used perl's system() function instead of the backticks?

system($cmd), exec($cmd), open(my $pipe, '-|', $cmd) (and its 2-arg form) and open(my $pipe, '|-', $cmd) (and its 2-arg form) work the same way as `$cmd` (aka qx`$cmd` aka readpipe($cmd)).

system($prog, LIST) where LIST returns at least one scalar won't invoke the shell.[1]

system({ $prog } $prog, LIST) won't invoke the shell.


  1. It can in Windows.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11120261]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-19 21:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found