Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

help needede in backticks(``) and system function

by uva (Sexton)
on Feb 10, 2006 at 06:18 UTC ( [id://529288]=perlquestion: print w/replies, xml ) Need Help??

uva has asked for the wisdom of the Perl Monks concerning the following question:

hello monks, what the difference between executing the external command in the system functionand the backticks operator. Is it correct ]system function] interpret the parent program and other one not.?
  • Comment on help needede in backticks(``) and system function

Replies are listed 'Best First'.
Re: help needede in backticks(``) and system function
by ikegami (Patriarch) on Feb 10, 2006 at 06:34 UTC

    The difference is whether the output (STDOUT) is captured or now. Backticks return what was printed to STDOUT, while system does not.

    From the docs, it sounds like backticks always pass the command to a subshell, while it's possible to avoid running a subshell with system.

      thanks ikegami.... will both the execution will interrupt the paren.i mean, will parent program wait until the child completes execution.

        Yes, the parent will wait in both cases. Unless you do execute something like command & (unix) or start command (Windows).

        fork+exec doesn't wait.
        IPC::Open3 doesn't wait.
        IPC::Run can do both.
        The special syntax system 1, ... in Windows doesn't wait.

Re: help needede in backticks(``) and system function
by planetscape (Chancellor) on Feb 10, 2006 at 07:39 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-04-23 12:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found