我需要从txt文件中分配变量。
的1.txt
Extinct
Legends
我想用这个命令在for循环中使用它们。
C:\another.bat "%var%"
这意味着当我运行bat文件时它会执行C:\ another.bat" Extinct"之后是C:\ another.bat" Legends"。
怎么做?
答案 0 :(得分:0)
@echo off
set "file_loc=1.txt"
for /f "usebackq delims=" %%L in ("%file_loc%") do (
call C:\another.bat "%%~L"
)