How can you check (peek) STDIN for piped data in Perl? (Without using select) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:48:24Z http://stackoverflow.com/feeds/question/518992 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/518992/how-can-you-check-peek-stdin-for-piped-data-in-perl-without-using-select 1 How can you check (peek) STDIN for piped data in Perl? (Without using select) C-o-r-E 2009-02-06T03:39:35Z 2009-02-09T17:27:02Z <p>Hi,</p> <p>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.</p> <p>Unfortunately, <code>select()</code> is not portable to some non-POSIX systems. Is there another way to do this with maximum portability?</p> http://stackoverflow.com/questions/518992/how-can-you-check-peek-stdin-for-piped-data-in-perl-without-using-select/518996#518996 0 Answer by paxdiablo for How can you check (peek) STDIN for piped data in Perl? (Without using select) paxdiablo 2009-02-06T03:43:14Z 2009-02-09T17:27:02Z <p>Short: No.</p> <p>Long: Use select and don't support non-POSIX, OR, find the specific matching functionality on the individual non-POSIX systems and use that.</p> <p>Actually, I just noticed that you mention Perl in your question (and python as a tag, but that's another issue). On what platform that Perl runs is select not working exactly?</p> http://stackoverflow.com/questions/518992/how-can-you-check-peek-stdin-for-piped-data-in-perl-without-using-select/519169#519169 5 Answer by ysth for How can you check (peek) STDIN for piped data in Perl? (Without using select) ysth 2009-02-06T05:03:09Z 2009-02-06T05:14:11Z <pre><code>use POSIX 'isatty'; if ( ! @ARGV &amp;&amp; isatty(*STDIN) ) { die "usage: ..."; } </code></pre> <p>See: <a href="http://www.opengroup.org/onlinepubs/009695399/functions/isatty.html" rel="nofollow">http://www.opengroup.org/onlinepubs/009695399/functions/isatty.html</a></p> <p>Note that select wouldn't be much help anyway, since it would produce false results if the piped info wasn't ready yet. Example:</p> <pre><code>seq 100000|grep 99999|perl -we'$rin="";vec($rin,fileno(STDIN),1)=1;print 0+select($rin,"","",.01)' </code></pre> http://stackoverflow.com/questions/518992/how-can-you-check-peek-stdin-for-piped-data-in-perl-without-using-select/519239#519239 7 Answer by pjf for How can you check (peek) STDIN for piped data in Perl? (Without using select) pjf 2009-02-06T05:43:44Z 2009-02-06T05:43:44Z <p>Perl comes with the <code>-t</code> file-test operator, which tells you if a particular filehandle is open to a TTY. So, you should be able to do this:</p> <pre><code>if ( -t STDIN and not @ARGV ) { # We're talking to a terminal, but have no command line arguments. # Complain loudly. } else { # We're either reading from a file or pipe, or we have arguments in # @ARGV to process. } </code></pre> <p>A quick test reveals this working fine on Windows with Perl 5.10.0, and Linux with Perl 5.8.8, so it should be portable across the most common Perl environments.</p> <p>As others have mentioned, <code>select</code> would not be a reliable choice as there may be times when you're reading from a process, but that process hasn't started writing yet.</p> <p>All the best,</p> <p><em>Paul</em></p>