telegram-bot-bash/examples/README.md

38 lines
1.4 KiB
Markdown
Raw Normal View History

2019-04-29 17:34:47 +00:00
#### [Home](../README.md)
## Bashbot examples
### bashbot.cron
An example crontab is provided in ```examples/bashbot.cron```, see [Expert use](../doc/4_expert.md#Scedule-bashbot-from-Cron)
### Interactive chats
Two examples for interactive scripts are provided as **calc.sh** and **question.sh**, see [Advanced use](../doc/3_advanced.md#Interactive-Chats)
2019-04-29 17:34:47 +00:00
### Background jobs
Background jobs are an easy way to provide sceduled messages or alerts if something happens.
2019-04-30 12:21:24 +00:00
**notify.sh** is a simple example on how to send a message every x seonds, e.g. current time.
2019-04-29 17:34:47 +00:00
2019-04-30 12:21:24 +00:00
**background-scripts** contains a more concrete example on how to start and stop different scripts plus some example backgound scripts.
2019-04-29 17:34:47 +00:00
```
mycommands.sh - /run_xxx and /kill-xxx wil start any script named run_xxx.sh
run_diskusage.sh - shows disk usage every 100 seconds
run_filename.sh - shown the name of new files in a named dir
2019-04-29 17:34:47 +00:00
run_filecontent.sh - shown the content of new files in a named dir
run_notify.sh - same as notify.sh
```
2019-04-30 12:21:24 +00:00
**Note:** Output of system commands often contains newlines, each newline results in a telegram message, the function 'send_telegram' in
mycommands.sh avoids this by converting each newline to ' mynewlinestartshere ' before output the string.
2019-04-29 17:34:47 +00:00
### Use bashbot from external scripts
**external-use** will contain some examples on how to send messages from external scripts to Telegram chats or users.
2019-04-29 17:34:47 +00:00
2019-04-30 12:21:24 +00:00
#### $$VERSION$$ v0.7-pre2-3-ge0a6d38
2019-04-29 17:34:47 +00:00