标签: windows batch-file ant
我想构建一个项目并从批处理文件中执行一些命令。 这是我的批处理命令
cd C:\MyFolder ant xslt echo completed!! 当我执行时,它会构建项目,但它永远不会出现在echo completed!!行。在实际场景中,我想执行一些批处理命令而不是echo completed!!。
cd C:\MyFolder ant xslt echo completed!!
echo completed!!
答案 0 :(得分:1)
请改用call ant xslt。 start /wait ant xslt也应该有用。
call ant xslt
start /wait ant xslt