Ruby 脚本如何检测它是否是由交互式 shell 触发的?

发布于 2025-01-09 05:58:12 字数 172 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖微凉心微凉 2025-01-16 05:58:12

检查 STDIN 是否是“TTY”(字面意思是 电传打字机) ://ruby-doc.org/core/IO.html#method-i-isatty" rel="nofollow noreferrer">IO#isatty

$ ruby -e 'puts STDIN.isatty'
true
$ echo "no" | ruby -e 'puts STDIN.isatty'
false

Check if STDIN is a "TTY" (literally meaning teletypewriter) with IO#isatty.

$ ruby -e 'puts STDIN.isatty'
true
$ echo "no" | ruby -e 'puts STDIN.isatty'
false
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文