Ruby 脚本如何检测它是否是由交互式 shell 触发的?
我有一个 Ruby 脚本,通常作为 cron 作业启动,但有时从命令行使用。我想显示一些仅与后一种情况相关的更新文本,以显示进度,并且不值得记录。
Ruby 脚本检测以下条件的安全且惯用的方法是什么?
- 是否在交互式 shell 中触发
- 是否正在通过管道传输
I have a Ruby script that is often kicked off as a cron job, but sometimes used from the command line. I'd like to display some update text that is only relevant in the latter case, to show progress, and is not worth logging.
What is a safe and idiomatic way for a Ruby script to detect the following conditions?
- whether it was triggered in an interactive shell
- whether it is being piped
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 STDIN 是否是“TTY”(字面意思是 电传打字机) ://ruby-doc.org/core/IO.html#method-i-isatty" rel="nofollow noreferrer">
IO#isatty
。Check if STDIN is a "TTY" (literally meaning teletypewriter) with
IO#isatty
.