gpt4 book ai didi

batch-file - 使用批处理运行带有参数的exe

转载 作者:行者123 更新时间:2023-12-01 19:57:06 29 4
gpt4 key购买 nike

如何将参数传递到运行 exe 的批处理文件中?我有一个需要 2 个参数的程序,我想使用具有定义参数的 bat 文件运行它 5 五次。类似这样的事情:

FOR /L %%G IN (1,1,5) DO start "path" program.exe -20 -15

其中 20 和 15 是参数。它不能识别 20 和 15,那么我该如何定义它呢?

最佳答案

如果您的program.exe接受命令行参数,请使用program.exe 20 15发送参数2015program.exe -20 -15 发送参数 -20-15

如果“path”代表program.exe部分或完整路径:

 start "" "path\program.exe" 20 15

如果“path”应代表program.exe工作目录:

 start "" /D "path" program.exe 20 15

阅读start command通过以下语法模式中的兼任 [options] 进行进一步修改的文档:

 START "title" [/D path] [options] "command" [parameters]

关于batch-file - 使用批处理运行带有参数的exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30693136/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com