The script is fully functioning but simple
msmtp-notify \
repo-encrypt \
unoconv-display \
+ watchsite \
yaml2json \
BASH_COMPLETION = \
--- /dev/null
+#!/usr/bin/env bash
+
+HELP="Usage: watchsite [-h] URL PATTERN
+
+Whatch a website for a pattern and send an alarm email when found.
+
+PARAMETERS
+
+ EMAIL read as environmental variable
+
+"
+
+DEFAULT_EMAIL="gustav.eek@fripost.org"
+SLEEP=3600
+
+if [ "$1" == "-h" ]; then
+ echo "$HELP"
+ exit
+fi
+
+if [ -z "$EMAIL" ]; then
+ email="$DEFAULT_EMAIL"
+else
+ email="$EMAIL"
+fi
+
+url="$1"
+ptrn="$2"
+
+text="from: $email
+to: $email
+subject: Watchsite result found
+
+Check result of '$ptrn' at <$url> !
+"
+
+while true; do
+ if curl -sL "$url" | grep -qi "$ptrn"; then
+ echo "$text" | msmtp "$email"
+ exit
+ fi
+ sleep $SLEEP
+done
+
+
+
+