├── .gitignore ├── LICENSE ├── README.html ├── README.md ├── README.txt ├── addons ├── antiFlood.sh └── example.sh ├── bashbot.rc ├── bashbot.sh ├── bin ├── any_command.sh ├── bashbot_env.inc.sh ├── bashbot_init.inc.sh ├── bashbot_stats.sh ├── delete_message.sh ├── edit_buttons.sh ├── edit_message.sh ├── kickban_user.sh ├── process_batch.sh ├── process_update.sh ├── promote_user.sh ├── send_broadcast.sh ├── send_buttons.sh ├── send_dice.sh ├── send_file.sh └── send_message.sh ├── commands.sh ├── db.json ├── dev ├── all-tests.sh ├── dev.inc.sh ├── git-add.sh ├── hooks │ ├── post-commit.sh │ ├── pre-commit.sh │ └── pre-push.sh ├── inject-json.sh ├── install-hooks.sh ├── make-distribution.sh ├── make-distribution.sh.exclude ├── make-html.sh ├── make-standalone.sh ├── make-standalone.sh.include ├── obfuscate.sh ├── shellcheck.files └── version.sh ├── doc ├── 0_install.md ├── 1_firstbot.md ├── 2_usage.md ├── 3_advanced.md ├── 4_expert.md ├── 5_practice.md ├── 6_reference.md ├── 7_develop.md └── bashbot.ascii ├── examples ├── README.md ├── background-scripts │ ├── mycommands.sh │ ├── run_diskusage.sh │ ├── run_filecontent.sh │ ├── run_filename.sh │ └── run_notify.sh ├── bash2env.sh ├── bashbot-multi.sh ├── bashbot.cron ├── calc.sh ├── jsonDB-keyboard │ └── mycommands.sh ├── notify.sh ├── question.sh ├── send-system-status │ ├── botacl │ └── mycommands.sh └── webhook │ ├── BASHBOT_HOME │ ├── README.md │ ├── index.php │ └── json.txt ├── modules ├── aliases.sh ├── answerInline.sh ├── background.sh ├── chatMember.sh ├── jsonDB.sh ├── processUpdates.sh └── sendMessage.sh ├── mycommands.conf ├── mycommands.sh ├── mycommands.sh.clean ├── scripts └── interactive.sh.clean └── test ├── ADD-test-new.sh ├── ALL-tests.inc.sh ├── a-commit-test.sh ├── b-example-test.sh ├── c-init-test.sh ├── c-init-test ├── blocked.jssh ├── botacl ├── botconfig.jssh ├── count.jssh ├── count.test └── stats.out ├── d-JSON.sh-test.sh ├── d-JSON.sh-test ├── JSON26783.log.in ├── JSON26783.log.result-1 ├── JSON26783.log.result-2 ├── JSON30458.log.in ├── JSON30458.log.result-1 ├── JSON30458.log.result-2 ├── JSON32034.log.in ├── JSON32034.log.result-1 └── JSON32034.log.result-2 ├── d-process_inline-test.sh ├── d-process_inline-test ├── d-process_inline-test.input └── d-process_inline-test.result ├── d-process_message-test.sh ├── d-process_message-test ├── d-process_message-test-left_chat_member.input ├── d-process_message-test-left_chat_member.result ├── d-process_message-test-mesage.result ├── d-process_message-test-message.input ├── d-process_message-test-message.result ├── d-process_message-test-new_chat_member.input ├── d-process_message-test-new_chat_member.result ├── d-process_message-test-new_chat_picture.input ├── d-process_message-test-new_chat_picture.result ├── d-process_message-test-new_chat_title.input ├── d-process_message-test-new_chat_title.result ├── d-process_message-test-pinned_message.input └── d-process_message-test-pinned_message.result ├── d-send_message-test.sh ├── d-send_message-test ├── d-send_message-test.input └── d-send_message-test.result ├── d-user_is-test.sh ├── e-env-test.sh └── e-env-test ├── blocked.jssh ├── botacl ├── botconfig.jssh └── count.jssh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/README.txt -------------------------------------------------------------------------------- /addons/antiFlood.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/addons/antiFlood.sh -------------------------------------------------------------------------------- /addons/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/addons/example.sh -------------------------------------------------------------------------------- /bashbot.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bashbot.rc -------------------------------------------------------------------------------- /bashbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bashbot.sh -------------------------------------------------------------------------------- /bin/any_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/any_command.sh -------------------------------------------------------------------------------- /bin/bashbot_env.inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/bashbot_env.inc.sh -------------------------------------------------------------------------------- /bin/bashbot_init.inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/bashbot_init.inc.sh -------------------------------------------------------------------------------- /bin/bashbot_stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/bashbot_stats.sh -------------------------------------------------------------------------------- /bin/delete_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/delete_message.sh -------------------------------------------------------------------------------- /bin/edit_buttons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/edit_buttons.sh -------------------------------------------------------------------------------- /bin/edit_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/edit_message.sh -------------------------------------------------------------------------------- /bin/kickban_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/kickban_user.sh -------------------------------------------------------------------------------- /bin/process_batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/process_batch.sh -------------------------------------------------------------------------------- /bin/process_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/process_update.sh -------------------------------------------------------------------------------- /bin/promote_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/promote_user.sh -------------------------------------------------------------------------------- /bin/send_broadcast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/send_broadcast.sh -------------------------------------------------------------------------------- /bin/send_buttons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/send_buttons.sh -------------------------------------------------------------------------------- /bin/send_dice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/send_dice.sh -------------------------------------------------------------------------------- /bin/send_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/send_file.sh -------------------------------------------------------------------------------- /bin/send_message.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/bin/send_message.sh -------------------------------------------------------------------------------- /commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/commands.sh -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/db.json -------------------------------------------------------------------------------- /dev/all-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/all-tests.sh -------------------------------------------------------------------------------- /dev/dev.inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/dev.inc.sh -------------------------------------------------------------------------------- /dev/git-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/git-add.sh -------------------------------------------------------------------------------- /dev/hooks/post-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/hooks/post-commit.sh -------------------------------------------------------------------------------- /dev/hooks/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/hooks/pre-commit.sh -------------------------------------------------------------------------------- /dev/hooks/pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/hooks/pre-push.sh -------------------------------------------------------------------------------- /dev/inject-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/inject-json.sh -------------------------------------------------------------------------------- /dev/install-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/install-hooks.sh -------------------------------------------------------------------------------- /dev/make-distribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/make-distribution.sh -------------------------------------------------------------------------------- /dev/make-distribution.sh.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/make-distribution.sh.exclude -------------------------------------------------------------------------------- /dev/make-html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/make-html.sh -------------------------------------------------------------------------------- /dev/make-standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/make-standalone.sh -------------------------------------------------------------------------------- /dev/make-standalone.sh.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/make-standalone.sh.include -------------------------------------------------------------------------------- /dev/obfuscate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/obfuscate.sh -------------------------------------------------------------------------------- /dev/shellcheck.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/shellcheck.files -------------------------------------------------------------------------------- /dev/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/dev/version.sh -------------------------------------------------------------------------------- /doc/0_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/0_install.md -------------------------------------------------------------------------------- /doc/1_firstbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/1_firstbot.md -------------------------------------------------------------------------------- /doc/2_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/2_usage.md -------------------------------------------------------------------------------- /doc/3_advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/3_advanced.md -------------------------------------------------------------------------------- /doc/4_expert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/4_expert.md -------------------------------------------------------------------------------- /doc/5_practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/5_practice.md -------------------------------------------------------------------------------- /doc/6_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/6_reference.md -------------------------------------------------------------------------------- /doc/7_develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/7_develop.md -------------------------------------------------------------------------------- /doc/bashbot.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/doc/bashbot.ascii -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/background-scripts/mycommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/background-scripts/mycommands.sh -------------------------------------------------------------------------------- /examples/background-scripts/run_diskusage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/background-scripts/run_diskusage.sh -------------------------------------------------------------------------------- /examples/background-scripts/run_filecontent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/background-scripts/run_filecontent.sh -------------------------------------------------------------------------------- /examples/background-scripts/run_filename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/background-scripts/run_filename.sh -------------------------------------------------------------------------------- /examples/background-scripts/run_notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/background-scripts/run_notify.sh -------------------------------------------------------------------------------- /examples/bash2env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/bash2env.sh -------------------------------------------------------------------------------- /examples/bashbot-multi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/bashbot-multi.sh -------------------------------------------------------------------------------- /examples/bashbot.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/bashbot.cron -------------------------------------------------------------------------------- /examples/calc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/calc.sh -------------------------------------------------------------------------------- /examples/jsonDB-keyboard/mycommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/jsonDB-keyboard/mycommands.sh -------------------------------------------------------------------------------- /examples/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/notify.sh -------------------------------------------------------------------------------- /examples/question.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/question.sh -------------------------------------------------------------------------------- /examples/send-system-status/botacl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/send-system-status/botacl -------------------------------------------------------------------------------- /examples/send-system-status/mycommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/send-system-status/mycommands.sh -------------------------------------------------------------------------------- /examples/webhook/BASHBOT_HOME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/webhook/BASHBOT_HOME -------------------------------------------------------------------------------- /examples/webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/webhook/README.md -------------------------------------------------------------------------------- /examples/webhook/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/webhook/index.php -------------------------------------------------------------------------------- /examples/webhook/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/examples/webhook/json.txt -------------------------------------------------------------------------------- /modules/aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/modules/aliases.sh -------------------------------------------------------------------------------- /modules/answerInline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/modules/answerInline.sh -------------------------------------------------------------------------------- /modules/background.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/modules/background.sh -------------------------------------------------------------------------------- /modules/chatMember.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/modules/chatMember.sh -------------------------------------------------------------------------------- /modules/jsonDB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/modules/jsonDB.sh -------------------------------------------------------------------------------- /modules/processUpdates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/modules/processUpdates.sh -------------------------------------------------------------------------------- /modules/sendMessage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/modules/sendMessage.sh -------------------------------------------------------------------------------- /mycommands.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/mycommands.conf -------------------------------------------------------------------------------- /mycommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/mycommands.sh -------------------------------------------------------------------------------- /mycommands.sh.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/mycommands.sh.clean -------------------------------------------------------------------------------- /scripts/interactive.sh.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/scripts/interactive.sh.clean -------------------------------------------------------------------------------- /test/ADD-test-new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/ADD-test-new.sh -------------------------------------------------------------------------------- /test/ALL-tests.inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/ALL-tests.inc.sh -------------------------------------------------------------------------------- /test/a-commit-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/a-commit-test.sh -------------------------------------------------------------------------------- /test/b-example-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/b-example-test.sh -------------------------------------------------------------------------------- /test/c-init-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/c-init-test.sh -------------------------------------------------------------------------------- /test/c-init-test/blocked.jssh: -------------------------------------------------------------------------------- 1 | ["blocked_user_or_chat_id"] "name and reason" 2 | -------------------------------------------------------------------------------- /test/c-init-test/botacl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/c-init-test/botconfig.jssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/c-init-test/botconfig.jssh -------------------------------------------------------------------------------- /test/c-init-test/count.jssh: -------------------------------------------------------------------------------- 1 | ["counted_user_chat_id"] "num_messages_seen" 2 | -------------------------------------------------------------------------------- /test/c-init-test/count.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/c-init-test/count.test -------------------------------------------------------------------------------- /test/c-init-test/stats.out: -------------------------------------------------------------------------------- 1 | A total of 272 messages from 24 users are processed. 2 | -------------------------------------------------------------------------------- /test/d-JSON.sh-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test.sh -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON26783.log.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON26783.log.in -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON26783.log.result-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON26783.log.result-1 -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON26783.log.result-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON26783.log.result-2 -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON30458.log.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON30458.log.in -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON30458.log.result-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON30458.log.result-1 -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON30458.log.result-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON30458.log.result-2 -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON32034.log.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON32034.log.in -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON32034.log.result-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON32034.log.result-1 -------------------------------------------------------------------------------- /test/d-JSON.sh-test/JSON32034.log.result-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-JSON.sh-test/JSON32034.log.result-2 -------------------------------------------------------------------------------- /test/d-process_inline-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_inline-test.sh -------------------------------------------------------------------------------- /test/d-process_inline-test/d-process_inline-test.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_inline-test/d-process_inline-test.input -------------------------------------------------------------------------------- /test/d-process_inline-test/d-process_inline-test.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_inline-test/d-process_inline-test.result -------------------------------------------------------------------------------- /test/d-process_message-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test.sh -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-left_chat_member.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-left_chat_member.input -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-left_chat_member.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-left_chat_member.result -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-mesage.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-mesage.result -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-message.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-message.input -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-message.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-message.result -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-new_chat_member.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-new_chat_member.input -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-new_chat_member.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-new_chat_member.result -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-new_chat_picture.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-new_chat_picture.input -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-new_chat_picture.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-new_chat_picture.result -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-new_chat_title.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-new_chat_title.input -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-new_chat_title.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-new_chat_title.result -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-pinned_message.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-pinned_message.input -------------------------------------------------------------------------------- /test/d-process_message-test/d-process_message-test-pinned_message.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-process_message-test/d-process_message-test-pinned_message.result -------------------------------------------------------------------------------- /test/d-send_message-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-send_message-test.sh -------------------------------------------------------------------------------- /test/d-send_message-test/d-send_message-test.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-send_message-test/d-send_message-test.input -------------------------------------------------------------------------------- /test/d-send_message-test/d-send_message-test.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-send_message-test/d-send_message-test.result -------------------------------------------------------------------------------- /test/d-user_is-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/d-user_is-test.sh -------------------------------------------------------------------------------- /test/e-env-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/e-env-test.sh -------------------------------------------------------------------------------- /test/e-env-test/blocked.jssh: -------------------------------------------------------------------------------- 1 | ["blocked_user_or_chat_id"] "name and reason" 2 | -------------------------------------------------------------------------------- /test/e-env-test/botacl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/e-env-test/botconfig.jssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topkecleon/telegram-bot-bash/HEAD/test/e-env-test/botconfig.jssh -------------------------------------------------------------------------------- /test/e-env-test/count.jssh: -------------------------------------------------------------------------------- 1 | ["counted_user_chat_id"] "num_messages_seen" 2 | --------------------------------------------------------------------------------