shell脚本练习(12.7)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本练习(12.7)相关的知识,希望对你有一定的参考价值。
例1.任意输入二个数然后做判断
vi number.sh
#!/bin/bash
#written by lizheng
echo "please enter two number"
read a
read b
if test $a -eq $b
then echo "NO.1 = NO.2"
elif test $a -gt $b
then echo "NO.1 > NO.2"
else echo "NO.1 < NO.2"
fi
以上是关于shell脚本练习(12.7)的主要内容,如果未能解决你的问题,请参考以下文章