blob: a9546586b6ea918d2edaaec4501bf7b0812bc9b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
# Group the bot should monitor
export GSB_GROUP_ID=""
# Path where the bots data should be stored
export GSB_STORE_PATH="~/geldschieberbot"
# Command the bot uses to send responses
export GSB_SEND_CMD=""
# Signal user the bot should use
export GSB_USER=""
# create GSB_STORE_PATH
if [[ ! -e "$GSB_STORE_PATH" ]]
then
mkdir -p $GSB_STORE_PATH 2>/dev/null
fi
|