Hi Perl Monks, i would like to get the exact same behaviour that i get with $ret = system( "some command"); but in addition i want to get the pid of that command, i been reading about the differences between exec,system and backticks, as i understand none of these is usefull for what i want to do. what worked for me was this:

>...my $ret = undef; >...my $pid = undef; >...if( $pid = fork()){ >...>...#here i store the pid in some array for other process >...} >...elsif( defined $pid){ >...>...$ret = system($cmd); >...>...open(my $f,">","/tmp/$$") or die "couldn't write file"; >...>...print $f $ret; >...>...close($f); >...>...die;#not sure if this is the proper way to kill the child, not + my main worry in this question >...} >...else{ >...>...print "\n couldnīt fork\n"; >...} >...waitpid($pid,0); >...if( open(my $F, "/tmp/$pid")){ >...>...while( my $line = <$F>){ >...>...>...$ret .= $line; >...>...} >...>...close($F); >...>...system("rm /tmp/$pid"); >...} >...else{ >...>...$ret = -1; >...}

i know this is suuper awfull, so mi question is: how i do this properly? p.s: sorry my english, and be good, this is my first question here.

p.s 2: i think the get_pidof function wont do because there will be several identical commands running at the same time.


In reply to get same return that system gives and get pid by Raiden690

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.