利用飞信机器人免费发天气预报短信

阅读更多
利用飞信机器人免费发天气预报短信
首先安装飞信机器人,通过飞信机器人想飞信好友发送信息;
然后通过查询预报天气网站。获得所在城市的天气,通过html2text得到文本内容,然后回去网页信息,进行过滤。
最后,利用飞信机器人把获取到的天气信息发送给好友,这样温馨的天气预报就好了。把发送信息的脚本放入crontab中让其自动执行。

步骤:
1)安装飞信机器人,获取源码。(见附件)
解压fection20091117-linux.tar.gz源码文件。然见用fection.zip里面的fection代替原先的fection可执行文件。
2)把fection的lib文件加入系统环境。
3)获取天气信息http://wap.weather.com.cn,并处理相关数据。
#!/bin/sh
cd /usr/local/bash/fx
/usr/bin/wget -nv -O weather.html http://wap.weather.com.cn/wap/weather/101190201.shtml 2>&1
weather=$(/bin/cat weather.html | /usr/bin/html2text | /bin/grep -A 6 '日' | /bin/sed 's/\[.*//g' | /bin/sed 's/.*]$//g' | /bin/sed 's/ //g' | /bin/grep -v '^$' | /usr/bin/head -n 6)
for tel in $(/bin/cat /usr/local/bash/fx/tels)
do
/usr/local/bash/fx/fetion --config=/usr/local/bash/fx/conf.cnf --index=1  --to=${tel}  --msg-utf8="${weather}" --msg-type=1 --exit-on-verifycode
done
/bin/rm -rf /usr/local/bash/fx/weather.html
  • fetion20091117-linux.tar.gz (5.1 MB)
  • 下载次数: 6
  • fetion.zip (167.6 KB)
  • 下载次数: 3

你可能感兴趣的:(fection,html2text,天气预报)