shell脚本-----计算器

要求:
编写脚本
利用以上命令制作一个计算器
要求:执行Calculator.sh后显示
请输入您要操作的数字:
请输入要操作的运算符:
请输入要操作的第二个数字:
执行后显示结果

vim Calculator.sh
#!/bin/bash
read -p "Please input first nmb1: " NMB1
read -p "Please input operator: " OPER
read -p "Please input second nmb2: " NMB2
case $OPER in
   \+)
   NMB=$[ ${NMB1}+$NMB2 ]
   ;;
   \-)
   NMB=$[${NMB1}-$NMB2]
   ;;
   \*)
   NMB=$[${NMB1}*$NMB2]
   ;;
   \/)
   NMB=$[${NMB1}/$NMB2]
   ;;
   \%)
   NMB=$[${NMB1}%$NMB2]
   ;;
   \*\*)
   NMB=$[${NMB1}**$NMB2]
   ;;
   *)
   echo -e '\033[31mError:The operator is not exist!!(+|-|*|/|%|**)\033[0m'
esac
echo $NMB

shell脚本-----计算器_第1张图片
测试:
shell脚本-----计算器_第2张图片
方法二:

vim Calculator.sh
read -p "Please input first number: " ANUM
read -p "Please input action: " ACTION
read -p "Please input second number: " BNUM
[ -z "$ANUM" -o -z "$ACTION" -o -z "$BNUM" ]&& {  #-o或者,表示其中任意一个为空时
        echo "Wring input messages !!"
        exit 1
}

bc <

shell脚本-----计算器_第3张图片
shell脚本-----计算器_第4张图片
shell脚本-----计算器_第5张图片

你可能感兴趣的:(RHCE)