mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-10 11:30:56 +00:00
45 lines
1016 B
Bash
Executable File
45 lines
1016 B
Bash
Executable File
#!/bin/bash
|
|
# file: interactive.sh
|
|
# template for an interactive chat
|
|
# test it with: start_proc "${CHAT[ID]}" "./scripts/interactive.sh.clean"
|
|
#
|
|
# This file is public domain in the USA and all free countries.
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
|
#
|
|
#### $$VERSION$$ 0.99-0-g2775000
|
|
|
|
######
|
|
# parameters
|
|
# $1 $2 args as given to starct_proc chat script arg1 arg2
|
|
# $3 path to named pipe
|
|
|
|
|
|
|
|
# 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
|
|
|
|
#######################
|
|
# place your commands here
|
|
#
|
|
# IMPORTTANT: to read user input from $INPUT
|
|
INPUT="${3:-/dev/stdin}"
|
|
#
|
|
# read -r variable <"${INPUT}"
|
|
|
|
# example wait form user input and echo it
|
|
echo "Enter a message:"
|
|
|
|
read -r test <"${INPUT}"
|
|
echo -e "Your Message: ${test}\nbye!"
|
|
|
|
|
|
# your commands ends here
|
|
######################
|
|
|