我有以下情况
@echo off
for %%x in (
machine1
machine2
machine3
for %%y in (
A
B
C
D
)
)
do
(
echo machine is %%x
\\%%x\%%y
)
我实际上是在检查股票是否开盘
\\machine1\A , \\machine1\B 等等..
你们能帮我解决嵌套循环吗?