linux location parameter
更新:HHH   时间:2023-1-7


#! /bin/bash
declare -i sum
declare -i muli
if [ $# -lt 2 ];then
echo "usage is please input three argument."
exit 5
fi
let sum=$1+$2
let mult=$1*$2
echo "the sum is $sum"
echo "The mult is $mult"

返回建站服务器教程...