blob: 20cdc6fc612b988c252925993e0f342352f48a84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
[ -f 'index.html' ] && rm 'index.html'
wget http://spot-on.sourceforge.net/ >/dev/null 2>/dev/null
if [ $? = 0 ]; then
[ -f unfetchable ] && rm unfetchable
grep 'has been released' < index.html | md5sum > new-sum
touch sum
if [ "$(cat sum)" = "$(cat new-sum)" ]; then
rm new-sum
else
mv new-sum sum
echo 'dooble'
fi
rm index.html
elif [ ! -f unfetchable ]; then
touch unfetchable
echo 'dooble (unfetchable)'
fi
|