我想做的是echo
在控制台上放一条简单的消息说:
variable named %%x has value of 'this is text inside the variable
所以我必须做的命令必须转义属于变量名的百分比,这样它就不会评估。通常,转义字符%
是 another %
。所以这有效:
echo %%variable%% has value: %variable%
但这并没有,似乎for
循环中使用的双百分比变量总是评估:
echo %%%%x has value: %%x