@echo off
wget -q -O %tmp%\weather.html http://www.265.com/weather/57516.htm
findstr "重庆" %tmp%\weather.html>new.txt
for /f "delims=' tokens=2,4,6,8,10,12,14,16" %%a in (new.txt) do (
echo 今天天气:%%a 上午:%%b 下午:%%c 晚上:%%d
echo 明天天气:%%e 上午:%%f 下午:%%g 晚上:%%h
)
pause