我有一个名为test.txt的文件,其中包含单词。
WORD1
WORD2
WORD3
我想打开它并执行一些命令。例如;
test.exe "WORD1"
test.exe "WORD2"
test.exe "WORD3"
我可以打开文件TYPE test.txt | MORE但我不知道如何逐行分隔它们。
我该怎么做?
答案 0 :(得分:1)
for /f "delims=" %%a in (test.txt) do test.exe "%%a"
如果您从提示符而不是批处理文件中运行,请使用%
代替%%
。