2019-04-19 15:31:01 +00:00
|
|
|
#!/bin/bash
|
2021-01-01 21:48:13 +00:00
|
|
|
########################################################################
|
|
|
|
#
|
|
|
|
# File: question.sh
|
|
|
|
#
|
|
|
|
# Usage: runproc example/question.sh - or run in terminal
|
|
|
|
#
|
|
|
|
# Description: example for an interactive chat, see mycommands.sh.dist
|
2020-06-07 11:30:59 +00:00
|
|
|
#
|
2019-04-19 15:31:01 +00:00
|
|
|
# This file is public domain in the USA and all free countries.
|
|
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
2020-06-07 11:30:59 +00:00
|
|
|
#
|
2021-01-17 08:57:08 +00:00
|
|
|
#### $$VERSION$$ v1.30-0-g3266427
|
2021-01-01 21:48:13 +00:00
|
|
|
########################################################################
|
2020-06-07 11:30:59 +00:00
|
|
|
|
|
|
|
######
|
|
|
|
# parameters
|
2020-06-23 14:35:50 +00:00
|
|
|
# $1 $2 args as given to starct_proc chat script arg1 arg2
|
2020-06-07 11:30:59 +00:00
|
|
|
# $3 path to named pipe
|
|
|
|
|
|
|
|
INPUT="${3:-/dev/stdin}"
|
2019-04-19 15:31:01 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2021-01-01 21:48:13 +00:00
|
|
|
# simple yes/no question, defaults to no
|
|
|
|
printf "Hi, hello there\nWould you like some tea (y/n)?\n"
|
2020-06-07 11:30:59 +00:00
|
|
|
read -r answer <"${INPUT}"
|
2021-01-01 21:48:13 +00:00
|
|
|
if [[ ${answer,,} == "y"* ]]; then
|
|
|
|
printf "OK then, here you go: http://www.rivertea.com/blog/wp-content/uploads/2013/12/Green-Tea.jpg\n"
|
|
|
|
else
|
|
|
|
printf "OK then, no tea ...\n"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# question with Keyboard, repeating until correct answer given
|
2021-01-04 22:08:09 +00:00
|
|
|
until [ "${SUCCESS}" = "y" ] ;do
|
2021-01-01 21:48:13 +00:00
|
|
|
printf 'Do you like Music? mykeyboardstartshere "Yass!" , "No"\n'
|
2020-06-07 11:30:59 +00:00
|
|
|
read -r answer <"${INPUT}"
|
2021-01-01 21:48:13 +00:00
|
|
|
case ${answer,,} in
|
|
|
|
'') printf "empty answer! Try again\n";;
|
|
|
|
'yass'*) printf "Goody! mykeyboardendshere\n";SUCCESS=y;;
|
|
|
|
'no'*) printf "Well that's weird. mykeyboardendshere\n";SUCCESS=y;;
|
2019-04-19 15:31:01 +00:00
|
|
|
*) SUCCESS=n;;
|
|
|
|
esac
|
|
|
|
done
|
2021-01-01 21:48:13 +00:00
|
|
|
printf "OK, Done!\n"
|
2020-06-07 11:30:59 +00:00
|
|
|
|