我正在尝试使用不同列表中的不同数字作为每次迭代中的参数来迭代Windows批处理文件中的列表。
set input_image_list=(1 2 3 4 5 6 7 8 9 )
set output_image_list = (2 3 4 5 6 7 8 9 10)
set next_needed_image = (002 003 004 005 006 007 008 009 010)
FOR %%A IN (2 3 4 5 6 7 8 9 10) DO python batchLayer4ThirdVideo.py --input_image !input_image_list[%%A]! --next_undreamed_image !next_needed_image[%%A]! --output_image %%A
但是当我将列表用作参数时,对列表的索引不起作用,它只是将索引input_image_list[2]
作为我的参数,而应该只是一个数字。
我如何正确索引列表,以便将其中的每个数字作为参数传递?
答案 0 :(得分:2)
有一种technique(以某种方式扭曲)将字符串列表扩展为数组,方法是将列表元素之间的空格(或其他任何char)替换为一个count和一组以形成数组。
从列表和列表中尚不清楚,是否要基于0或1的索引。
(更容易的是for /l %%A in (2,1,10) Do ...
)
为了更好地理解,我使用了较短的变量名,并将已拆分的python命令回显到多行。
:: Q:\Test\2018\07\05\SO_51191502.cmd
@Echo off & SetLocal EnableDelayedExpansion
set i=0&Set "ImgIn= 1 2 3 4 5 6 7 8 9 10"
Set "ImgIn=%ImgIn: ="&Set /a i+=1&Set "ImgIn[!i!]=%"
:: Set ImgIn
set i=0&Set "ImgOut= 2 3 4 5 6 7 8 9 10 11"
Set "ImgOut=%ImgOut: ="&Set /a i+=1&Set "ImgOut[!i!]=%"
:: Set ImgOut
set i=0&Set "ImgNext= 002 003 004 005 006 007 008 009 010 011"
Set "ImgNext=%ImgNext: ="&Set /a i+=1&Set "ImgNext[!i!]=%"
:: Set ImgNext
For /L %%A IN (1,1,10) DO (
Echo python batchLayer4ThirdVideo.py ^
--input_image !ImgIn[%%A]! ^
--next_undreamed_image !ImgNext[%%A]! ^
--output_image !ImgOut[%%A]!
)
示例输出:
> Q:\Test\2018\07\05\SO_51191502.cmd
python batchLayer4ThirdVideo.py --input_image 1 --next_undreamed_image 002 --output_image 2
python batchLayer4ThirdVideo.py --input_image 2 --next_undreamed_image 003 --output_image 3
python batchLayer4ThirdVideo.py --input_image 3 --next_undreamed_image 004 --output_image 4
python batchLayer4ThirdVideo.py --input_image 4 --next_undreamed_image 005 --output_image 5
python batchLayer4ThirdVideo.py --input_image 5 --next_undreamed_image 006 --output_image 6
python batchLayer4ThirdVideo.py --input_image 6 --next_undreamed_image 007 --output_image 7
python batchLayer4ThirdVideo.py --input_image 7 --next_undreamed_image 008 --output_image 8
python batchLayer4ThirdVideo.py --input_image 8 --next_undreamed_image 009 --output_image 9
python batchLayer4ThirdVideo.py --input_image 9 --next_undreamed_image 010 --output_image 10
python batchLayer4ThirdVideo.py --input_image 10 --next_undreamed_image 011 --output_image 11