Minimal functionality implemented
Minimal functionality implemented
This commit is contained in:
23
scripts/unix/send-telegram.template
Normal file
23
scripts/unix/send-telegram.template
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
GROUP_ID=<group_id>
|
||||
BOT_TOKEN=<bot_token>
|
||||
|
||||
# this 3 checks (if) are not necessary but should be convenient
|
||||
if [ "$1" == "-h" ]; then
|
||||
echo "Usage: `basename $0` \"text message\""
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
echo "Add message text as second arguments"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "You can pass only one argument. For string with spaces put it on quotes"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
curl -s --data "text=$1" --data "chat_id=$GROUP_ID" 'https://api.telegram.org/bot'$BOT_TOKEN'/sendMessage' > /dev/null
|
||||
Reference in New Issue
Block a user