Reputation: 18108
Is there a standard(ish) POSIX way of determining if my process (I’m writing this as a Ruby script right now; but I’m curious for multiple environments, including Node.js and ISO C command-line applications) is being run in an interactive terminal, as opposed to, say, cron, or execution from another tool, or… so on and so forth.
Specifically, I need to acquire user input in certain situations, and I need to fail fatally if that is determinably not possible (i.e. being run by cron.) I can do this with an environment variable, but I’d prefer something more standard-ish, if I can.
Upvotes: 14
Views: 4157
Reputation: 4220
As @Mitch wrote it in a comment, which can also be useful to some people:
For anyone who came here looking for windows, try
System.Environment.UserInteractive
for .Net orGetUserObjectInformation
for win32, which will fail for non-interactive processes
Upvotes: 0
Reputation: 2621
I've always used $stdout.isatty
to check for this. Other approaches might include checking the value of ENV['TERM']
or utilizing the ruby-terminfo gem.
Upvotes: 18