我可以在 XP 计算机上从 Nant 调用 UNIX 脚本吗
我已经安装了 TeamCity,并使用 Nant 从其中的一个步骤中调用了 UNIX 脚本。做了一个简单的测试,看看我可以调用一个仅写入测试消息的 Nant 构建。现在我正在尝试构建代码来调用 Unix 脚本,但在 WEB 上找不到任何有用的东西。有谁知道是否可以做到?
谢谢
安格斯
I have installed TeamCity and what to call a UNIX script from a step in it using using Nant. Done a simple test to see that I can call a Nant build that simply writes a test message. Now I am tring to build the code to call a Unix script and cannot find anything of use on the WEB. Does anyone know if it can be done?
Thanks
Angus
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows XP 无法执行 Unix 脚本,因此 nant 也无法执行。
您可以安装 cygwin,它可以执行 Unix 脚本,然后通过 nant 的 exec 任务使用它。
像这样的东西:
Windows XP can't execute Unix scripts, so nant can't do it either.
You can install cygwin which can execute Unix scripts and then use that through nant's exec task.
Something like: