in reply to Re: Is it possible to write to STDIN ?
in thread Is it possible to write to STDIN ?
$ENV{REQUEST_METHOD} = "POST"; open F, "testplan.txt" or die $!; while ( chomp ( my $data = <F> ) ) { ### DO ANYTHING TO MAKE $data BECOME STDIN ### # the main() script that reads and handle the form # print final result # next test plan data } close F;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Is it possible to write to STDIN ?
by DrHyde (Prior) on Jul 23, 2014 at 10:31 UTC |