Shell计算器

Posted 盛碗米饭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell计算器相关的知识,希望对你有一定的参考价值。

#!/bin/bash
# filename : jisuan.sh
# description : add, subtract, multiply, and divide
print_usage(){
echo -e "USAGE:$0 NUM1 {+|-|*|%} NUM2"
exit 1
}
if [ $# -ne 3 ];then
print_usage
fi

firstnum=$1
secondnum=$3
op=$2

if [ -n "$(echo $firstnum|sed ‘s/[0-9]//g‘)" ];then
print_usage
fi

if [ "$op" != "+" ]&&[ "$op!="-"" ]&&[ "$op" != "*" ]&&[ "$op" != "/" ];then
print_usage
fi

if [ -n "$(echo $secondnum|sed ‘s/[0-9]//g‘)" ];then
print_usage
fi

echo "${firstnum}${op}${secondnum}=$((${firstnum}${op}${secondnum}))"

另;echo $(($1))


















以上是关于Shell计算器的主要内容,如果未能解决你的问题,请参考以下文章

LINUX shell 遇到的问题。 我想计算1+2+3+4.到100

shell命令行混合进制计算器

sh Shell bc计算器,浮点数运算

Shell计算器

如何在shell中对浮点数进行计算

在Linux下,用shell编写一个简单的计算器,要实现加减乘除4个功能就行了