If the program doesn't accept the input from a pipe, it probably means that it is using direct access to the console or even simply flushing the input buffer prior to prompting.
As it's a console program, I'm not sure if Win32:CtrlGUI will succeed in feeding it input in the right way. If not, then you could also try using Win32::Console and the WriteInput(event) call. Be sure to use the STD_INPUT_HANDLE parameter for the new() call to get a handle to the existing console input buffer rather than creating a new one.
Even this may not work. For instance, if I was righting a program to accept a password from the console and I wanted to ensure that a human being was entering the password rather than a ghost writing program, I might create a new input console just for the purposes of retrieving that password without the FILE_SHARE_WRITE permission and discard it afterwards. In this case, there should be no way for any other program to 'feed' the input. Hopefully, a yes or no answer to a prompt won't have required such precautions:)
Good luck.
Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"When I'm working on a problem, I never think about beauty. I think only how to solve the problem. But when I have finished, if the solution is not beautiful, I know it is wrong." -Richard Buckminster Fuller
If I understand your problem, I can solve it! Of course, the same can be said for you.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.