Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Windows bat 文件中:
mvn.bat install java -jar build.jar pause
命令行窗口执行后存在mvn.bat install,如何让它继续执行剩余命令?
mvn.bat install
我认为你的问题是,当你调用 mvn 命令时,你再也不会回到你的脚本了。
尝试使用 call 命令,例如:
call mvn install
这将调用 mvn install 命令,然后返回到您的脚本。