Shell脚本,实现两个变量之间的加减乘除运算

代码:

#!/bin/bash
read -p “input number:” a
read -p “input number:” b
read -p “input fuhao:” c
case c i n + ) l e t " s u m = c in +)let "sum= cin+)let"sum=a+$b"
echo s u m ; ; − ) l e t " s u m = sum;; -)let "sum= sum;;)let"sum=a-$b"
echo s u m ; ; ∗ ) l e t " s u m = sum;; *)let "sum= sum;;)let"sum=a*$b"
echo s u m ; ; / ) l e t " s u m = sum;; /)let "sum= sum;;/)let"sum=a/$b"
echo $sum;;
esac
编译过程:
①在终端输入:vim hello.sh(hello是文件名,随便起),回车!
②摁i进入编辑模式,将代码写入,摁Esc,再摁:wq!回车。
③输入sh hello.sh就成功了。

你可能感兴趣的:(linux与shell编程)