Using IPC::Open3, in it's simplest form, is very easy; BUT your windows command may be problem-prone.. all you can do is give it a quick try. Here is a very simple usage for doing a fast go/no-go test. See if you can print to your command, then collect all output. Uncomment the while(1){} code block, if you want to loop. Also note the sysread method, in case your <> read hangs. So give this a try, and report back your code and any problems you encounter.
#!/usr/bin/perl
use warnings;
use strict;
use IPC::Open3;
my $pid = open3(\*WRITE, \*READ, \*ERROR,"your_command");
if( ! $pid ){ die "$!\n";}
#my $pid = open3(\*WRITE, \*READ,0,"your_command");
#if \*ERROR is false, STDERR is sent to STDOUT
#while(1){
print "Enter a string to evaluate\n";
chomp(my $query = <STDIN>);
#send query to command
print WRITE "$query\n";
#give small time to output
select(undef,undef,undef,.5); #half second delay
#get the answer from command
chomp(my $answer = <READ>);
print "$query = $answer\n";
# you may need something with sysread, if <READ> hangs
# my $bytes_read = sysread(READ, my $buf, 1024);
# print "$query = $buf\n";
#get the error from command
chomp(my $error = <ERROR>);
print "$query error = $error\n";
#}
waitpid($pid, 1);
# It is important to waitpid on your child process,
# otherwise zombies could be created.
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.