Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Is it possible to write to STDIN ?

by exilepanda (Friar)
on Jul 21, 2014 at 15:18 UTC ( [id://1094523]=note: print w/replies, xml ) Need Help??


in reply to Re: Is it possible to write to STDIN ?
in thread Is it possible to write to STDIN ?

Hey, this one is interesting and seem very likely what I am looking for... but please have a look for what I am planning to do, and could you advise can I do this inside the code rather than pipe it from the shell?
$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
    You could close STDIN and re-open it as a normal filehandle:
    close(STDIN); open(STDIN, 'foo'); print $_ foreach(<STDIN>);
    The documentation for 'open' shows how to save and restore filehandles, and some other dirty tricks you can play.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1094523]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 21:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found