Re: Application
On Dec 24, 6:58 am, almatir...@xxxxxxxxx (Alma) wrote:
Hi All,
I have got an application which is not a GUI developed in C. I need to
enter the data from notepad and enter in the place which prompt me for
the correct data. I am storing in the order in which its prompting.
can any one provide me the guidence of how to go about. can it be
acheived using perl.
You may simply be able to run the program with its input fed via a
pipe.
open(my $process, '-|', 'myprogram', 'and','its','arguments') or die
$!;
print $process "$_\n" for @the_input;
I you need more than this then I "Expect" (hint,hint) there's
something on CPAN to help.
See also, the FAQ.
.
Relevant Pages
- Re: Save Changes to the Global Template? Keeps Popping Up
... option checked to prompt before saving changes to normal.dot. ... See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome! ... use the same 3rd party program, without any problem whatsoever. ... (microsoft.public.word.newusers) - Re: WSS3 Anonymous Access problem
... not a real solution to the questions "why am I being prompted in situation a ... I suppose it fits into a FAQ as it's a question but without a solution I ... anonymous user hadn't been given access to the comments list, ... access the site will prompt for username/password. ... (microsoft.public.sharepoint.windowsservices) - Re: short prompt?
... notepad however shows long name on title bar. ... good to know about this toolset, but sorry for not found *built-in* solution ... since cmd prompt is now more powerfull than ever, ... (microsoft.public.win2000.cmdprompt.admin) - Re: short prompt?
... In microsoft.public.win2000.cmdprompt.admin sali wrote: ... notepad however shows long name on title bar. ... cd to short-named dir is also ok, cd performs, but, *prompt* is ... (microsoft.public.win2000.cmdprompt.admin) - Re: Publishing an existing project to Project server
... Try posting on the server newsgroup. ... Please see FAQ Item: 24. ... companion products and other useful Project information ... > to the save prompt while in the project center. ... (microsoft.public.project) |
|