获取天气预报的shell脚本学习

2009-05-13 10:55:11来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

获取天气预报的shell脚本学习
脚本来自 http://www.linuxsir.org/bbs/thread29701-11.html
红字部分是我的注释
作者: chainone
                               
//前面的漏了一点东西,在VI中没有全部COPY出来,不好意思下面是完整的。
天气预报(限国内城市)
用法
WeatherReport 城市名
如城市名为空则默认为南京
刚学SHELL,请高手指教
=============================================================================
#weather reporter@chainone
place=$1
if test "$place" = ""
then
place="南京"
fi
rm -f index.shtml
wget -q
http://weather.sina.com.cn/text/index.shtml
#我的FreeBSD没有安装wget, 把wget -q 改成fetch
ifzhixia=$(grep "$place" -c index.shtml)
if test "$ifzhixia" = 2
then
cat index.shtml | grep "$place" -A 3 |sed '1d' | grep '>.\+' > .weathertemp2
elif test "$ifzhixia" = 1
then
cat index.shtml | grep "$place" -A 3 | grep '>.\+' > .weathertemp2
#cat index.shtml | grep "$place" -A 3 | grep '>.\+ .weathertemp2
else
echo "没有该城市的天气讯息!"
exit 0
fi
# grep "$place" -A 3  匹配$place 所在的行,包括后面的3行 -A 是After
# sed '1d'  删除第一行
# grep '>.\+
                     
匹配">???????
# tr -d '
天津
天津

  ≤3
12 ℃四川
成都

  ≤3
17 ℃
#-----------------------------
placetitle="城市: "
condition="天气状况: "
wind="风向风力: "
tempr="最低温度:        "
echo "$placetitle" > .weathertemp
echo "$condition" >> .weathertemp
echo "$wind" >> .weathertemp
echo "$tempr" >> .weathertemp
paste .weathertemp .weathertemp2
rm -f index.shtml
                       
               
       
       
我这样处理后正常了,我的默认 UTF-8 的   
#我的gnome终端字体设成UTF-8可以显示中文
# 但还是不行,
# 用locale 检查一下
www# locale
LANG=zh_CN.eucCN
LC_CTYPE="zh_CN.eucCN"
LC_COLLATE="zh_CN.eucCN"
LC_TIME="zh_CN.eucCN"
LC_NUMERIC="zh_CN.eucCN"
LC_MONETARY="zh_CN.eucCN"
LC_MESSAGES="zh_CN.eucCN"
LC_ALL=
#设置字体
www# setenv LC_ALL zh_CN.UTF-8
www# locale
LANG=zh_CN.eucCN
LC_CTYPE="zh_CN.UTF-8"
LC_COLLATE="zh_CN.UTF-8"

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:PDF中文文件乱码问题

下一篇:编程生活中的Emacs