2019-04-29 16:50:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# file: notify.sh
|
|
|
|
# example for an background job, run with startback notify.sh
|
|
|
|
|
|
|
|
# This file is public domain in the USA and all free countries.
|
|
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
2019-05-16 14:57:04 +00:00
|
|
|
#### $$VERSION$$ v0.76-0-g6d497d5
|
2019-04-29 16:50:36 +00:00
|
|
|
|
|
|
|
# adjust your language setting here
|
|
|
|
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
|
|
|
export 'LC_ALL=C.UTF-8'
|
|
|
|
export 'LANG=C.UTF-8'
|
|
|
|
export 'LANGUAGE=C.UTF-8'
|
|
|
|
|
|
|
|
unset IFS
|
|
|
|
# set -f # if you are paranoid use set -f to disable globbing
|
|
|
|
|
|
|
|
# discard STDIN for background jobs!
|
|
|
|
cat >/dev/null &
|
|
|
|
|
|
|
|
# check if $1 is a number
|
|
|
|
re='^[0-9]+$'
|
|
|
|
if [[ $1 =~ $re ]] ; then
|
|
|
|
SLEEP="$1"
|
|
|
|
else
|
|
|
|
SLEEP=10 # time between time notifications
|
|
|
|
fi
|
|
|
|
|
|
|
|
# output current time every $1 seconds
|
|
|
|
while sleep $SLEEP
|
|
|
|
do
|
|
|
|
date "+* It's %k:%M:%S o' clock ..."
|
|
|
|
done
|
|
|
|
|