从文本文件中获取变量并使用BATCH将它们运行到循环中

时间:2014-08-29 18:19:19

标签: windows variables batch-file for-loop

我需要从txt文件中分配变量。

的1.txt

Extinct
Legends

我想用这个命令在for循环中使用它们。

C:\another.bat "%var%"

这意味着当我运行bat文件时它会执行C:\ another.bat" Extinct"之后是C:\ another.bat" Legends"。

怎么做?

1 个答案:

答案 0 :(得分:0)

@echo off
set "file_loc=1.txt"
for /f "usebackq delims=" %%L in ("%file_loc%") do (

  call   C:\another.bat "%%~L" 

)