ANT:在 Windows 上启动后台进程
我希望 ANT 在 Windows 计算机上执行 .cmd 文件...但不应显示命令提示符。该进程应该在后台运行。 Ant 应该只触发该命令并继续执行下一个命令。 我什至尝试使用Windows“/B”开关,但它不起作用。 有人有建议吗?
I want ANT to execute a .cmd file on windows machine... but the command prompt should not be displayed. the process should be running in background. Ant should just fire the command and proceed with the next command.
I even tried using the windows "/B" switch, but it did not work.
Does anybody have a suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样使用 exec 任务:
这应该足够了,否则如果您需要使用 start /B ... :
请参阅 ant 手动执行任务 了解详细信息。
Use exec task like that :
That should be sufficient, otherwise if you need to use start /B ... :
See ant manual exec task for details.