How can I tell if STDIN is connected to a terminal in Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T04:07:30Z http://stackoverflow.com/feeds/question/528781 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/528781/how-can-i-tell-if-stdin-is-connected-to-a-terminal-in-perl 1 How can I tell if STDIN is connected to a terminal in Perl? tomdee 2009-02-09T16:10:51Z 2009-02-09T17:21:34Z <p>How can I tell if STDIN is connected to a terminal in Perl?</p> http://stackoverflow.com/questions/528781/how-can-i-tell-if-stdin-is-connected-to-a-terminal-in-perl/528791#528791 6 Answer by gms8994 for How can I tell if STDIN is connected to a terminal in Perl? gms8994 2009-02-09T16:14:42Z 2009-02-09T16:14:42Z <pre><code>if (-t STDIN) { # stdin is connected } else { # stdin is not connected } </code></pre> <p>I usually use this in conjunction with -t STDOUT, to find out if I'm running from an interactive shell, or from cron, to enable more output.</p> http://stackoverflow.com/questions/528781/how-can-i-tell-if-stdin-is-connected-to-a-terminal-in-perl/528794#528794 0 Answer by tomdee for How can I tell if STDIN is connected to a terminal in Perl? tomdee 2009-02-09T16:16:02Z 2009-02-09T16:16:02Z <p>One solution would be to use tty:</p> <pre><code>[root@server] ~&gt; tty /dev/pts/0 [root@server] ~&gt; echo y | tty not a tty </code></pre> <p>But not very pretty...</p> http://stackoverflow.com/questions/528781/how-can-i-tell-if-stdin-is-connected-to-a-terminal-in-perl/529059#529059 5 Answer by brian d foy for How can I tell if STDIN is connected to a terminal in Perl? brian d foy 2009-02-09T17:21:34Z 2009-02-09T17:21:34Z <p>You might also be interested in <a href="http://search.cpan.org/dist/IO-Interactive" rel="nofollow">IO::Interactive</a> to figure out if Perl thinks it is interacting with a user. Simply being connected to a tty doesn't mean the user is going to see what you do.</p>