我正在尝试将令牌传递给批处理脚本中的子例程-
SET devices=host1 host2 host3
FOR /F "tokens=* delims=," %%G IN (%devices%) DO CALL :sendReq %%G
:sendReq
curl.exe http://%1:1234/service/monitor
GOTO :EOF
问题 -
The system cannot find the file host1
- 是错误信息不知道为什么。
%1
是不是解决了host1
?