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.
我需要通过从 ant 脚本调用文件在命令提示符下运行 ruby 文件(EG:d:\ruby\ruby file.rb)。我需要蚂蚁脚本。谁能帮我?
您可能只会<exec>在 ruby 上使用 rb 文件作为第一个参数。
<exec>
像这样的东西:
<exec executable="c:\Ruby192\bin\ruby.exe" dir="d:\ruby"> <arg value="d:\ruby\ruby file.rb"/> </exec>
这取决于 ruby.exe 的安装位置,以及它是否在您的 PATH 中。