From 22f2cb4a046fad3cbb480860641ca4a40e21aacf Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 14 Dec 2021 19:29:25 +0100 Subject: in-between commit --- jatwisd | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 jatwisd diff --git a/jatwisd b/jatwisd new file mode 100755 index 0000000..71c2f40 --- /dev/null +++ b/jatwisd @@ -0,0 +1,48 @@ +#!/bin/sh + +function usage() { + cat << EOF +Usage: jatwisd [options] + + --help + display (this) help message + + -h, --https + poll url using https + + -s, --sftp + poll url using sftp + + -e, --exec + script to run if the url is reachable + + -t, --timeout + timeout period (in milliseconds) + + -f, --freq, --frequency + polling frequency + + -l, --lockfile + set lockfile location and enable lockfile checking + +See jatwisd(1) for more info +EOF +} + +while [ "$1" != "" ]; do + PARAM=`echo $1 | awk -F= '{print $1}'` + VALUE=`echo $1 | awk -F= '{print $2}'` + case $PARAM in + --help) + usage + exit + ;; + *) + echo "ERROR: unknown parameter \"$PARAM\"" + usage + exit 1 + ;; + esac + shift +done + -- cgit v1.2.3