为了学点Linux shell,无聊至极,用while写了个99乘法表:
i=1
while [ $i –lt 10 ];do
j=1
while [ $j –lt 10 ];do
if [ $i –ge $j ];then
echo –n "$i * $j = $(($i * $j))"’ ‘
fi
((j++))
done
echo
((i++))
done
你还别说,shell还真不是很好写呢。