所以我要做的就是:
我有一个变量%input%
,
我们说它被定义为NAME
。
set input=NAME
set /p what="NAME: "
set %input%=%what%
我不想将%input%
设置为等于%what%
,我想将NAME
设置为等于%what%
。
我该怎么办? (因为当我尝试ECHO is off.
echo %NAME%
答案 0 :(得分:0)
对我来说很好!
Set input=NAME
Set /P what="NAME: "
Set %input%=%what%
Echo( %%input%%=%input% %%what%%=%what% %%NAME%%=%NAME%
Pause