如何使用textfile中的参数启动程序?

Batch.bat

@textFile = "c:\Users\Arguments.txt";
start "" "C:\Users\coffee.cmd" --join test.js --compile @textFile

Arguments.txt
test5.coffe
test2.coffe

最佳答案

@echo off
set arg_file=textFile
setlocal EnableDelayedExpansion
for /f "usebackq delims=" %%A in ("%arg_file%") do (
   set "argline=!argline! %%A"
)
start "" "C:\Users\coffee.cmd" --join test.js --compile !argline!
endlocal

关于windows - 从文本文件批量获取启动参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16712471/

10-09 13:44