show/hide this revision's text 3 added 12 characters in body; edited title

How can you check (peek) STDIN for piped data in perlPerl? (Without using select)

Hi,

I'm trying to handle the possibility that that no arguments and no piped data is passed to a perl Perl script. I'm assuming that if there are no arguments then input is being piped via STDIN. However if the user provides no arguments and does not pipe anything to the script, it will try to get keyboard input. My objective is to provide an error message instead.

UnfortunatelySelect(, select() is not portable to some non POSIX non-POSIX systems. Is there another way to do this with maximum portability?

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

How can you check (peek) STDIN for piped data in perl? (Without using select)

Hi
I'm trying to handle the possibility that that no arguments and no piped data is passed to a perl script. I'm assuming that if there are no arguments then input is being piped via STDIN. However if the user provides no arguments and does not pipe anything to the script, it will try to get keyboard input. My objective is to provide an error message instead.

Unfortunately Select() is not portable to some non POSIX systems.
Is there another way to do this with maximum portability?