Beefy Boxes and Bandwidth Generously Provided by pair Networks RobOMonk
The stupid question is the question not asked
 
PerlMonks  

help needede in backticks(``) and system function

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

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.

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 01: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 02: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
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.