Since this is an issue, I assume that the program will be run without a person sitting there watching it, correct?

Also, I'm guessing that the forked processes will sometimes be run by a human directly and may then require user input, but sometimes will be run by your program, and for whatever reason will be able to function properly without receiving any input in that case.

If my assumption and my guess are correct, then why not add a command line argument to the program that gets forked? Wrap the sections that get user input in an 'if' and just skip over that section if the command line argument has been set. That way you can fork it without having it hang by passing the correct argument, and it will still work as usual if invoked directly from the command line.

It's not particularly fancy or elegant, but it's simple and should work unless there's constraints I'm not aware of


In reply to Re: How to deal with a forked proces that is waiting for user input? by eighty-one
in thread How to deal with a forked proces that is waiting for user input? by gepapa

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.