2016-01-05 17:01:28 +01:00
|
|
|
#!/bin/bash
|
2016-01-05 17:15:14 +01:00
|
|
|
|
2016-04-19 05:49:35 -04:00
|
|
|
# This file is public domain in the USA and all free countries.
|
|
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
2019-03-29 17:52:00 +01:00
|
|
|
|
2019-04-24 13:34:44 +02:00
|
|
|
#### $$VERSION$$ v0.70-dev2-18-g097a841
|
2019-03-29 17:52:00 +01: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
|
2016-04-19 05:49:35 -04:00
|
|
|
|
2016-01-05 17:01:28 +01:00
|
|
|
echo "Why hello there.
|
|
|
|
Would you like some tea (y/n)?"
|
2019-04-01 18:24:05 +02:00
|
|
|
read -r answer
|
2016-01-05 17:01:28 +01:00
|
|
|
[[ $answer =~ ^([yY][eE][sS]|[yY])$ ]] && echo "OK then, here you go: http://www.rivertea.com/blog/wp-content/uploads/2013/12/Green-Tea.jpg" || echo "OK then."
|
|
|
|
until [ "$SUCCESS" = "y" ] ;do
|
2019-04-16 20:43:54 +02:00
|
|
|
echo 'Do you like Music? mykeyboardstartshere "Yass!" , "No"'
|
2019-04-01 18:24:05 +02:00
|
|
|
read -r answer
|
2016-01-05 17:01:28 +01:00
|
|
|
case $answer in
|
2017-11-11 08:51:49 +01:00
|
|
|
'Yass!') echo "Goody! mykeyboardendshere";SUCCESS=y;;
|
|
|
|
'No') echo "Well that's weird. mykeyboardendshere";SUCCESS=y;;
|
2016-01-05 17:01:28 +01:00
|
|
|
*) SUCCESS=n;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
exit
|