2019-04-29 16:50:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# file: run_filename
|
|
|
|
# background job to display all new files in WATCHDIR
|
|
|
|
#
|
2020-08-15 07:29:13 +00:00
|
|
|
#### $$VERSION$$ v1.0-0-g99217c4
|
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 &
|
|
|
|
|
|
|
|
# watch for new logfiles
|
|
|
|
WATCHDIR="/var/log"
|
|
|
|
source "./mycommands.sh"
|
|
|
|
|
|
|
|
# test your script and the remove ...
|
2019-04-30 08:40:07 +00:00
|
|
|
WATCHDIR="/tmp/bottest"
|
2019-04-29 16:50:36 +00:00
|
|
|
|
2019-04-30 08:40:07 +00:00
|
|
|
# this is called by watch dir loop
|
2019-04-29 16:50:36 +00:00
|
|
|
# $1 is name of the new file
|
|
|
|
loop_callback() {
|
|
|
|
# output one simple line ...
|
|
|
|
echo "New file ${1} created in ${WATCHDIR}!"
|
|
|
|
}
|
|
|
|
|
|
|
|
watch_dir_loop "$WATCHDIR"
|
2020-06-07 11:30:59 +00:00
|
|
|
|