使用 rake/buildr 打印新行

发布于 2024-11-17 17:04:31 字数 233 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

太傻旳人生 2024-11-24 17:04:31

我想通了。使用 put 而不是 print,如下所示。

放置“服务器位于 IP 地址 #{SERVER}”

I figured it out. Use puts instead of print as follows.

puts "Server at ip address #{SERVER}"

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