如何在bat文件中执行多个命令?
我正在尝试构建 jasperserver。我想通过bat文件执行所有这些命令。我创建了一个 bat 文件,但当我执行它时,它只执行第一个命令。
@Echo Off
js-ant clean-config
js-ant gen-config
js-ant add-jdbc-driver
js-ant build-pro
js-ant create-js-db
js-ant build-js-ddl-pro
js-ant init-js-db-pro
js-ant import-sample-data-pro
这些是bat文件的内容..我不知道该怎么做...我从未创建过bat文件:) 谢谢..
I am trying to build jasperserver. I want to execute all those commands through bat file. I have created one bat file but when I execute it, it executes only first command.
@Echo Off
js-ant clean-config
js-ant gen-config
js-ant add-jdbc-driver
js-ant build-pro
js-ant create-js-db
js-ant build-js-ddl-pro
js-ant init-js-db-pro
js-ant import-sample-data-pro
these are the content of bat file.. I am not sure what to do... I never created bat file :)
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜 js-ant 本身就是一个批处理文件。在这种情况下,您需要
CALL
它,否则调用批处理文件将自动终止。这应该有效:
I guess js-ant is a batch file itself. In that case you need to
CALL
it, otherwise the calling batch file is terminated automatically.This should work: