Ruby 在文件和标准输入之间切换
您将如何创建一个可以读取的变量。如果某个文件存在,它将从该文件中读取,否则将从标准输入中读取。比如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对你有用吗?
This this works for you?
请参阅:...如果没有参数,则针对标准输入运行;否则输入文件=ARGV
See: ...run against stdin if no arg; otherwise input file =ARGV
我认为 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.