我可以在 XP 计算机上从 Nant 调用 UNIX 脚本吗

发布于 2024-11-16 18:47:35 字数 165 浏览 2 评论 0原文

我已经安装了 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 技术交流群。

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

发布评论

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

评论(1

风铃鹿 2024-11-23 18:47:35

Windows XP 无法执行 Unix 脚本,因此 nant 也无法执行。

您可以安装 cygwin,它可以执行 Unix 脚本,然后通过 nant 的 exec 任务使用它。

像这样的东西:

<exec program="c:\cygwin\bin\bash.exe" commandline="--login -i myscript.sh" />

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:

<exec program="c:\cygwin\bin\bash.exe" commandline="--login -i myscript.sh" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文