这为什么会报错呀
#!/bin/sh multipy(){ if [ $1 -gt 1 ] ##这边要有空格 then result=`expr ${result} \* $1` next=`expr $1 - 1` echo "result= ${result}" echo "next= ${next}" multipy $next fi } result=1 multipy 5 #这个是运行multipy函数