shell 程序设计入门 比较两个数的大小

shell 程序设计入门 #!/bin/sh #The function used to compare the two numbers vara=$1 varb=$2 if [ -z $vara ] || [ -z $varb ] then echo "please input hte two numbers" exit 1 fi if [ $vara -eq $varb ] ; then e
相关文章
相关标签/搜索