0

我有一个 shell 脚本,它可以抓取天气,然后将其显示在我的树莓派上,但我想根据温度添加图像。我有图像,只是不确定如何将其添加到 shell 脚本中。它sed用于从 xml 文件中获取数据。这是代码:

#!/bin/sh
echo Feeting Cambridge weather..
wget -O yw.htm http://weather.yahooapis.com/forecastrss?w=12779904\&u=f -o log.txt
echo Processing..
grep -A4 -i 'Current' yw.htm > yw
sed '1d' yw > yw2
sed '2d' yw2 > yw
sed -i 's/<br \/>//g' yw
sed -i 's/<BR \/>//g' yw
sed -i 's/High/\nHigh/g' yw
echo `date` >> yw
echo Displaying..
sudo ./weather.py
echo Done

所以让我再总结一下我想要的东西:我想根据 xml 文件中的温度显示图像。这甚至可能吗?我是 shell 脚本的新手,所以很容易。

更新:基于一些评论:我想要右边的图像,weather.py 在树莓派上的 netsurf 中打开 html 页面

os.system('netsurf file///home/pi/yw')
4

0 回答 0