shell函数计算平方或立方
2016-09-28函数获取参数用$1,返回结果用echo。
#!/bin/sh
#set -x
function square()
{
n=$1
((result2=n*n))
echo $result2;
}
function cube()
{
n=$1
((result3=n*n*n))
echo $result3;
}
echo n n^2 n^3
for ((i=1;i<11;i++));
{
x=$(square $i);
y=$(cube $i);
echo $i $x $y
}