我在减法方面遇到了一些问题,我不知道为什么:(这是我的代码:
#!/bin/bash
w3m http://www.weather.com/weather/hourbyhour/graph/PLXX0027 > plik.txt
image= grep -o 'http.*' plik.txt
t= cat plik.txt |sed '105q;d' | grep -o '[0-9][0-9]'
a=32
temp=$((t-a))
echo $temp
我收到了类似的东西:
name@name ~/Desktop $ sh p.sh
http://s.imwx.com/v.20120328.084252//img/wxicon/70/14.png
25
-32
但我想接受 25-32 的减法...(当然 25 取决于网页中的值)但为什么它不想减去它?