-
背程序!!!查看全部
-
until 的1-100求和查看全部
-
while的1-100求和查看全部
-
按照文件类型判断查看全部
-
批量删除用户查看全部
-
批量添加用户查看全部
-
1-100求和查看全部
-
批量解压缩查看全部
-
case 语句查看全部
-
#!/bin/bash read -p "Please input your firstnum:" num1 read -p "Please input your secondnu:" num2 read -p "please input your operation:" ope test1=$(echo $num1 | grep "[^0-9]") test2=$(echo $num2 | grep "[^0-9]") if [ -z "$num1" -o -z "$num2" -o -z "$ope" ] then echo "Input is NULL" exit 10 #查看输入是否为空 fi if [ -n "$test1" -o -n "$test2" ] then echo "Input is not number" exit 11 fi #查看输入的是否是数字 if [ "$ope" == '+' ] then result=$(($num1 + $num2)) elif [ "$ope" == '-' ] then result=$(($num1 - $num2)) elif [ "$ope" == '*' ] then result=$(($num1 * $num2)) elif [ "$ope" == '/' ] then result=$(($num1 / $num2)) else echo "Ope is error" exit 12 fi echo "$num1 $ope $num2 = $result"查看全部
-
计算器查看全部
-
多重条件判断查看全部
-
字符串的判断查看全部
-
判断整数查看全部
-
两个文件的比较查看全部
举报
0/150
提交
取消