Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写安装 Ruby 和 RVM 的脚本,但遇到了一些问题。当我尝试运行时:
rvm install 1.9.3-head
RVM 显示一些文本并要求我按“q”继续。由于这将成为脚本的一部分,因此我需要弄清楚如何在不按“q”的情况下继续。
交互模式下的 rvm 可能会问问题,为了避免他们在二进制模式下使用 rvm,有两种方法:
command rvm install 1.9.3 # when rvm was sourced
和:
$rvm_path/bin/rvm install 1.9.3 # should work always