2019-04-29 16:50:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# file: run_filename
|
|
|
|
# background job to display content of all new files in WATCHDIR
|
|
|
|
#
|
2019-05-02 10:33:10 +00:00
|
|
|
#### $$VERSION$$ v0.80-dev-2-g4e4194d
|
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 &
|
|
|
|
|
2019-04-30 08:40:07 +00:00
|
|
|
# watch for new files created by a trusted programm
|
|
|
|
WATCHDIR="/my_trusted/dir_to_watch"
|
2019-04-29 16:50:36 +00:00
|
|
|
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
|
|
|
NEWLINE='mynewlinestartshere'
|
|
|
|
|
|
|
|
# this is called by watch dir loop
|
2019-04-29 16:50:36 +00:00
|
|
|
# $1 is name of the new file
|
|
|
|
loop_callback() {
|
2019-04-30 08:40:07 +00:00
|
|
|
# output content of file, you must trust creator because content is sent as message!
|
|
|
|
output_telegram "Contents of ${1}: ${NEWLINE} $(cat "${1}")"
|
2019-04-29 16:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
watch_dir_loop "$WATCHDIR"
|