How can I check (peek) STDIN for piped data in Perl without using select?
问题 I'm trying to handle the possibility 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? 回答1: Perl comes