2019-04-29 16:50:36 +00:00
|
|
|
#!/bin/bash
|
2021-01-01 21:00:46 +00:00
|
|
|
# file: run_diskusage.sh
|
2019-04-29 16:50:36 +00:00
|
|
|
# example for an background job display a system value
|
2020-06-07 11:30:59 +00:00
|
|
|
#
|
2019-04-29 16:50:36 +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-05 10:58:30 +00:00
|
|
|
#### $$VERSION$$ v1.25-dev-7-g9ef8778
|
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-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 &
|
|
|
|
|
2020-09-27 18:11:28 +00:00
|
|
|
# shellcheck source=examples/background-scripts/mycommands.sh
|
2019-04-29 16:50:36 +00:00
|
|
|
source "./mycommands.sh"
|
|
|
|
|
|
|
|
# check if $1 is a number
|
2021-01-05 10:58:30 +00:00
|
|
|
regex='^[0-9]+$'
|
|
|
|
if [[ $1 =~ ${regex} ]] ; then
|
2019-04-29 16:50:36 +00:00
|
|
|
SLEEP="$1"
|
|
|
|
else
|
|
|
|
SLEEP=100 # time between time notifications
|
|
|
|
fi
|
|
|
|
|
|
|
|
NEWLINE=$'\n'
|
|
|
|
|
2021-01-01 21:00:46 +00:00
|
|
|
# output disk usage every $1 seconds
|
2019-04-29 16:50:36 +00:00
|
|
|
WAIT=0
|
2021-01-05 10:58:30 +00:00
|
|
|
while sleep "${WAIT}"
|
2019-04-29 16:50:36 +00:00
|
|
|
do
|
|
|
|
output_telegram "Current Disk usage ${NEWLINE} $(df -h / /tmp /usr /var /home)"
|
|
|
|
# only for testing, delete echo line for production ...
|
|
|
|
echo "Current Disk usage ${NEWLINE} $(df -h / /tmp /usr /var /home)"
|
2021-01-05 10:58:30 +00:00
|
|
|
WAIT="${SLEEP}"
|
2019-04-29 16:50:36 +00:00
|
|
|
done
|
|
|
|
|