使用 rake/buildr 打印新行
我正在使用 buildr,并尝试将所有命令行参数打印到标准输出。我一直无法找到关于 buildr 或 rake (构建器是由哪个构建器构建)的打印功能的很多文档。我已经有以下内容:
print('Server at ip address' + SERVER)
其中 SERVER 是我存储命令行参数的变量。问题是我希望它在自己的行上,并且在 SERVER 之后添加 '\n' 似乎没有做任何事情。有人知道最好的方法吗?
I am using buildr and I am trying to print all of my command line arguments to standard out. I have been unable to find much documentation on the print function for buildr or for rake (which buildr was built from). I already have the following:
print('Server at ip address' + SERVER)
where SERVER is the variable I store the command line argument from. The problem is that I want it on its own line and adding a '\n' after SERVER doesn't seem to do anything. Anyone know the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了。使用 put 而不是 print,如下所示。
放置“服务器位于 IP 地址 #{SERVER}”
I figured it out. Use puts instead of print as follows.
puts "Server at ip address #{SERVER}"