Board logo

标题: 为什么set附不上值 [打印本页]

作者: czweb     时间: 2010-4-22 04:26    标题: 为什么set附不上值


ping 192.168.5.8 -n 1 >%temp%\XcCG_Ping.txt
set state=false
for /f "tokens=8 delims== " %%i in ('find /i "TTL" %temp%\XcCG_Ping.txt') do set state=true
echo [Ping] >%temp%\XcCG_Ping.ini
echo 192.168.5.8=%state% >>%temp%\XcCG_Ping.ini
代码的意思是检测对方机器是否开机,如果开机就让state=true,
测试结果是不管对方机器是否开机,state都等于false,为什么呢

[ Last edited by czweb on 2010-4-22 at 14:09 ]
作者: qinchun36     时间: 2010-4-22 10:38
你上面是
set state=false

下面为什么又是
set %state%=true

你知道下面这么写是什么意思么 ?
作者: czweb     时间: 2010-4-22 14:08


  Quote:
Originally posted by qinchun36 at 2010-4-22 10:38:
你上面是
set state=false

下面为什么又是
set state=true

你知道下面这么写是什么意思么 ?

先是给state一个初始值呀,能ping的通那台机器就将state赋值成true
作者: Hanyeguxing     时间: 2010-4-22 16:33

ping 192.168.5.8 -n 1&&set "state=true"||set "state=false"

作者: czweb     时间: 2010-4-26 09:18


  Quote:
Originally posted by Hanyeguxing at 2010-4-22 16:33:
ping 192.168.5.8 -n 1&&set "state=true"||set "state=false"

妙,好棋