Windows批处理BAT脚本查询PM2.5实时空气质量指数(AQI)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows批处理BAT脚本查询PM2.5实时空气质量指数(AQI)相关的知识,希望对你有一定的参考价值。

@echo off
set "myCity=beijing"
set "fileUTF8=%temp%\AQI.UTF8"
set "fileTMP=%temp%\AQI.TMP"
set "fileANSI=%temp%\AQI.ANSI"
wget -q "http://www.pm25x.com/city/%myCity%.htm" -O "%fileUTF8%"
sed -r "/rt-title/!d; s#.*<b>(.*)</b>(.*)</div>#\1 \2#" "%fileUTF8%" > "%fileTMP%"
sed -r "/aqivalue/!d; s#.*>(.*)</div>#[PM2.5] \1#" "%fileUTF8%" >> "%fileTMP%"
sed -r "/aqileveltext/!d; s#.*>(.*)</div>#\1#" "%fileUTF8%" >> "%fileTMP%"
sed "/utip/!d; s#.*utip..##; s#</div>##" "%fileUTF8%" >> "%fileTMP%"
powershell -c "Get-Content ‘%fileTMP%‘  -Encoding utf8 | Out-File -Encoding default ‘%fileANSI%‘"
type "%fileANSI%"
pause

wget.exe  sed.exe  下载地址:
http://bbs.bathome.net/s/tool/index.html

批处理查询PM2.5实时空气质量指数(AQI)
http://bbs.bathome.net/thread-38817-1-1.html

本文出自 “Batcher” 博客,请务必保留此出处http://batcher.blog.51cto.com/11779161/1794373

以上是关于Windows批处理BAT脚本查询PM2.5实时空气质量指数(AQI)的主要内容,如果未能解决你的问题,请参考以下文章

Windows-执行python脚本(bat批处理)

Windows-执行python脚本(bat批处理)

错误记录Windows 系统 bat 脚本报错 ( Java 生成 bat 脚本乱码处理 | 输出 GB2312 字符串 | Windows 中的换行时 )

windows设置SpringBoot程序(bat脚本)开机自启

windows调度程序每x分钟运行一次批处理脚本(.bat)? [复制]

Windows批处理脚本陷入死循环问题