Oh, Wisest ones:

I have a parent thread who forks a child which executes a script with exec, after a time, it kills such child (using the pid of the child forked)

This works wonderfuly

my $pidChild; my $pid0=fork(); if ($pid0) { #parent process $pidChild=$pid0; print "Parent has launched child $pid0\n"; sleep(10); my $killed=kill 'KILL', $pidChild; if ($killed) { print "Parent has killed child $pid0\n"; } sleep(5); my @alive=`ps aux | grep process | grep -v grep`; print "@alive\n"; } else { #child print "This is child $$\n"; my $command='sh /path/process.sh'; exec($command); }

until I try to redirect the output of the executed script, then the pid changes.

my $pidChild; my $pid0=fork(); if ($pid0) { #parent process $pidChild=$pid0; print "Parent has launched child $pid0\n"; sleep(10); my $killed=kill 'KILL', $pidChild; if ($killed) { print "Parent has killed child $pid0\n"; } sleep(5); my @alive=`ps aux | grep process | grep -v grep`; print "@alive\n"; } else { #child print "This is child $$\n"; my $command='sh /path/process.sh 2>&1'; exec($command); }

Also fails if I try to redirect the output to a file

my $command='sh /path/process.sh > /pathlogs/mylog.log';

Why the redirection changes the pid? Are the script I am trying to execute and the redirection of its output different processes? What is it happening inside there?

Thank you a lot in advance for clarifying this mistery...


In reply to fork, exec and pid by luxAeterna

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.