shell脚本练习(12.8)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本练习(12.8)相关的知识,希望对你有一定的参考价值。
输入2个数(x,y)如果x等于y,则输出z=x+y,如果x大于y,则输出z=x-y,否则输出z=x+y
vi number2.sh
#!/bin/bash
#written by lizheng
#about panduan
echo "please enter two number"
read x
read y
if test $x -eq $y
then echo "z=$x - $y"
elif test $x -gt $y
then echo "z=$x -$y"
else echo "z=$x + $y"
fi
以上是关于shell脚本练习(12.8)的主要内容,如果未能解决你的问题,请参考以下文章