summaryrefslogtreecommitdiffstats
path: root/skripti/download-changes-to-website.sh
blob: 6059267709e492834bef2852c59a632e95efb1a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -ex
n=`rev <<<$0 | cut -d/ -f1 | rev`
s=10
[ x$2 != x ] && s=$2
while :
do
	t=`mktemp -p "" $n.XXX`
	wget -O$t $1
	f=`sha256sum $t | cut -d\  -f1`
	[ -f $f ] && rm $t || mv $t $f
	sleep $s
done