Ruby 在文件和标准输入之间切换

发布于 2024-08-18 04:45:03 字数 164 浏览 16 评论 0原文

您将如何创建一个可以读取的变量。如果某个文件存在,它将从该文件中读取,否则将从标准输入中读取。比如:

input = File.open("file.txt") || in

这不起作用,但我认为应该经常这样做,但我找不到一个好的方法来做到这一点。

How would you create a variable that could be read. It would read from a certain file if it exists, otherwise it would read from standard input. Something like:

input = File.open("file.txt") || in

This doesn't work, but I think this should be done pretty often, but I can't find a nice way to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

世态炎凉 2024-08-25 04:45:03

这对你有用吗?

input = File.exist?("file.txt") ? File.open("file.txt") : STDIN

This this works for you?

input = File.exist?("file.txt") ? File.open("file.txt") : STDIN
久随 2024-08-25 04:45:03

我认为 ruby​​ 能够处理在首次使用 STDIN 之前未使用的参数,就好像它是通过管道传输到标准输入的文件的文件名一样。

I think ruby has the ability to treat arguments that aren't used before STDIN is first used as if it were filenames for files piped into standard input.

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