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
相關文章
相關標籤/搜索