码迷,mamicode.com
首页 > 系统相关 > 详细

Shell 实现简单计算器功能

时间:2017-05-21 21:52:48      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:shell 计算器

Shell 实现简单计算器功能,脚本如下:

[root@nfs scripts]# cat jisuan.sh
#!/bin/bash
print_usage(){
    printf $"USAGE:$0 NUM1 {+|-|*|/} NUM2\n"
    exit 1
}

#判断传入的参数是不是3个
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}))"

调试:

[root@nfs scripts]# sh -x jisuan.sh 6 + 4
+ ‘[‘ 3 -ne 3 ‘]‘
+ firstnum=6
+ secondnum=4
+ op=+
++ sed ‘s/[0-9]//g‘
++ echo 6
+ ‘[‘ -n ‘‘ ‘]‘
+ ‘[‘ + ‘!=‘ + ‘]‘
++ sed ‘s/[0-9]//g‘
++ echo 4
+ ‘[‘ -n ‘‘ ‘]‘
+ echo 6+4=10
6+4=10
[root@nfs scripts]# sh -x jisuan.sh 5 \* 5
+ ‘[‘ 3 -ne 3 ‘]‘
+ firstnum=5
+ secondnum=5
+ op=‘*‘
++ sed ‘s/[0-9]//g‘
++ echo 5
+ ‘[‘ -n ‘‘ ‘]‘
+ ‘[‘ ‘*‘ ‘!=‘ + ‘]‘
+ ‘[‘ ‘*‘ ‘!=‘ - ‘]‘
+ ‘[‘ ‘*‘ ‘!=‘ ‘*‘ ‘]‘
++ sed ‘s/[0-9]//g‘
++ echo 5
+ ‘[‘ -n ‘‘ ‘]‘
+ echo ‘5*5=25‘
5*5=25

注意: 

  1. “-x”表示调试,可以看见执行的步骤

  2. 对应 “*” 需要加 “\”转义

本文出自 “知识改变命运” 博客,请务必保留此出处http://ahtornado.blog.51cto.com/4826737/1927919

Shell 实现简单计算器功能

标签:shell 计算器

原文地址:http://ahtornado.blog.51cto.com/4826737/1927919

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!