mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-11 11:50:54 +00:00
62c3d5eb84
Removed JSON.sh and added the project as a submodule. Modified code referencing it accordingly. Added "attach" argument to attach to the tmux session and a default message if no argument is given. Other minor changes.
20 lines
607 B
Bash
Executable File
20 lines
607 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file is public domain in the USA and all free countries.
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
|
|
|
echo "Why hello there.
|
|
Would you like some tea (y/n)?"
|
|
read answer
|
|
[[ $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
|
|
echo 'Do you like Music? mykeyboardstartshere "Yass!" "No"'
|
|
read answer
|
|
case $answer in
|
|
'Yass!') echo "Goody!";SUCCESS=y;;
|
|
'No') echo "Well that's weird.";SUCCESS=y;;
|
|
*) SUCCESS=n;;
|
|
esac
|
|
done
|
|
exit
|