How can I tell if STDIN is connected to a terminal in Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:07:30Zhttp://stackoverflow.com/feeds/question/528781http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/528781/how-can-i-tell-if-stdin-is-connected-to-a-terminal-in-perl1How can I tell if STDIN is connected to a terminal in Perl?tomdee2009-02-09T16:10:51Z2009-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#5287916Answer by gms8994 for How can I tell if STDIN is connected to a terminal in Perl?gms89942009-02-09T16:14:42Z2009-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#5287940Answer by tomdee for How can I tell if STDIN is connected to a terminal in Perl?tomdee2009-02-09T16:16:02Z2009-02-09T16:16:02Z<p>One solution would be to use tty:</p>
<pre><code>[root@server] ~> tty
/dev/pts/0
[root@server] ~> 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#5290595Answer by brian d foy for How can I tell if STDIN is connected to a terminal in Perl?brian d foy2009-02-09T17:21:34Z2009-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>