new interactive command calc

This commit is contained in:
Kay Marquardt (Gnadelwartz) 2019-04-14 20:30:59 +02:00
parent dec31508fc
commit 7e75b92261
4 changed files with 37 additions and 4 deletions

View File

@ -7,7 +7,7 @@
# This file is public domain in the USA and all free countries.
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
#
#### $$VERSION$$ v0.60-dev3-0-g2550aec
#### $$VERSION$$ v0.60-dev3-8-gdec3150
SHELL=/bin/sh

View File

@ -1,7 +1,7 @@
#!/bin/sh
# description: Start or stop telegram-bash-bot
#
#### $$VERSION$$ v0.60-dev3-0-g2550aec
#### $$VERSION$$ v0.60-dev3-8-gdec3150
# shellcheck disable=SC2009
# shellcheck disable=SC2181

View File

@ -10,7 +10,7 @@
# This file is public domain in the USA and all free countries.
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
#
#### $$VERSION$$ v0.60-dev3-6-g5787908
#### $$VERSION$$ v0.60-dev3-8-gdec3150
#
# Exit Codes:
# - 0 sucess (hopefully)
@ -457,7 +457,7 @@ background() {
startproc() {
killproc "$2"
local fifo="$2${copname}" # add $1 to copname, so we can have more than one running script per chat
local fifo="$2${copname}"
mkfifo "${TMPDIR:-.}/${fifo}"
tmux new-session -d -s "${fifo}" "$1 &>${TMPDIR:-.}/${fifo}; echo imprettydarnsuredatdisisdaendofdacmd>${TMPDIR:-.}/${fifo}"
tmux new-session -d -s "sendprocess_${fifo}" "bash $SCRIPT outproc ${CHAT[ID]} ${fifo}"

33
calc Executable file
View File

@ -0,0 +1,33 @@
#!/bin/bash
# This file is public domain in the USA and all free countries.
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
#### $$VERSION$$ v0.60-dev3-8-gdec3150
# 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
echo 'Starting Calculator ...'
echo 'Enter first number.'
read -r A
echo 'Enter second number.'
read -r B
echo 'Select Operation: mykeyboardstartshere "Addition" "Subtraction" "Multiplication" "Division" "Cancel"'
read -r opt
echo -n 'Result: '
case $opt in
'add'* | 'Add'* ) expr $A + $B ;;
'sub'* | 'Sub'* ) expr $A - $B ;;
'mul'* | 'Mul'* ) expr $A \* $B ;;
'div'* | 'Div'* ) expr $A / $B ;;
'can'* | 'Can'* ) echo "abort!" ;;
* ) echo "unknown operator!";;
esac
echo "Bye .."