From 985f2088b55b5520a4f9449ad5a274ae305e0403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Sat, 25 Mar 2023 21:50:41 +0100 Subject: download changes to website in directory --- skripti/download-changes-to-website.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 skripti/download-changes-to-website.sh (limited to 'skripti') diff --git a/skripti/download-changes-to-website.sh b/skripti/download-changes-to-website.sh new file mode 100755 index 0000000..2d5dce4 --- /dev/null +++ b/skripti/download-changes-to-website.sh @@ -0,0 +1,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` + mv $t $f + sleep $s +done -- cgit v1.2.3