2019-03-18 14:32:17 +00:00
|
|
|
#!/bin/bash
|
2021-01-01 21:48:13 +00:00
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# File: notify.sh
|
|
|
|
#
|
|
|
|
# Description: example for an background job, see mycommands.sh.dist
|
|
|
|
#
|
|
|
|
# Usage: runback notify example/notify.sh [seconds] - or run in terminal
|
|
|
|
# killback notify - to stop background job
|
|
|
|
#
|
|
|
|
# Options: seconds - time to sleep between output, default 10
|
2020-06-07 11:30:59 +00:00
|
|
|
#
|
2019-03-18 14:32:17 +00:00
|
|
|
# This file is public domain in the USA and all free countries.
|
|
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
2021-01-01 21:48:13 +00:00
|
|
|
#
|
2021-01-04 22:08:09 +00:00
|
|
|
#### $$VERSION$$ v1.25-dev-5-ga5aa756
|
2021-01-01 21:48:13 +00:00
|
|
|
########################################################################
|
2020-06-07 11:30:59 +00:00
|
|
|
|
|
|
|
######
|
|
|
|
# parameters
|
2020-06-23 14:35:50 +00:00
|
|
|
# $1 $2 args as given to starct_proc chat script arg1 arg2
|
2020-06-07 11:30:59 +00:00
|
|
|
# $3 path to named pipe/log
|
|
|
|
|
2019-03-27 14:03:02 +00:00
|
|
|
# adjust your language setting here
|
|
|
|
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
2019-03-29 16:59:57 +00:00
|
|
|
export 'LC_ALL=C.UTF-8'
|
2019-03-29 16:52:00 +00:00
|
|
|
export 'LANG=C.UTF-8'
|
|
|
|
export 'LANGUAGE=C.UTF-8'
|
|
|
|
|
|
|
|
unset IFS
|
|
|
|
# set -f # if you are paranoid use set -f to disable globbing
|
2019-03-27 14:03:02 +00:00
|
|
|
|
|
|
|
# discard STDIN for background jobs!
|
|
|
|
cat >/dev/null &
|
|
|
|
|
2021-01-01 21:48:13 +00:00
|
|
|
# $1 = time between time notifications
|
|
|
|
# check if $1 is a valid number
|
|
|
|
if [[ "$1" =~ ^[0-9]+$ ]] ; then
|
2019-03-18 14:32:17 +00:00
|
|
|
SLEEP="$1"
|
|
|
|
else
|
2021-01-01 21:48:13 +00:00
|
|
|
SLEEP=10
|
2019-03-18 14:32:17 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# output current time every $1 seconds
|
2021-01-01 21:48:13 +00:00
|
|
|
printf "Output time every %s seconds ...\n" "${SLEEP}"
|
|
|
|
|
|
|
|
while true
|
2019-03-18 14:32:17 +00:00
|
|
|
do
|
2021-01-01 21:48:13 +00:00
|
|
|
date "+* It's %k:%M:%S o'clock ..."
|
2021-01-04 22:08:09 +00:00
|
|
|
sleep "${SLEEP}"
|
2019-03-18 14:32:17 +00:00
|
|
|
done
|
|
|
|
|