vote up 1 vote down star
1

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

flag

3 Answers

vote up 6 vote down check
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|flag
vote up 5 vote down

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|flag
vote up 0 vote down

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|flag
This isn't portable either. – Mr. Muskrat Feb 9 at 16:26

Your Answer

Get an OpenID
or

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