Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: detect input available from command line

by mifflin (Curate)
on Mar 11, 2011 at 16:49 UTC ( [id://892695]=note: print w/replies, xml ) Need Help??


in reply to Re: detect input available from command line
in thread detect input available from command line

I want to know when
while (<>) { }
has something available to read. I'd like to not execute this code when there isn't something available because it will block.

This idiom will read when @ARGV is populated or when there is some data available to read on STDIN.

I can handle detecting whether @ARGV has data. What I'm not sure on is how to detect whether STDIN has something available to read. Still testing but I'm not convinced, yet, that -t, as suggested by others, will work here.

Replies are listed 'Best First'.
Re^3: detect input available from command line
by Anonymous Monk on Mar 11, 2011 at 17:13 UTC

    One thing you can do is start a second thread. Let that thread do the blocking read, and pass results to the main thread as they become available.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-25 23:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found