up vote 5 down vote favorite
2
share [g+] share [fb]

How can I tell if STDIN is connected to a terminal in Perl?

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted
if (-t STDIN) {
  # stdin is connected
} else {
  # stdin is not connected
}

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.

link|improve this answer
feedback

You might also be interested in IO::Interactive 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.

link|improve this answer
feedback

One solution would be to use tty:

[root@server] ~> tty
/dev/pts/0
[root@server] ~> echo y | tty
not a tty

But not very pretty...

link|improve this answer
This isn't portable either. – Mr. Muskrat Feb 9 '09 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.