2010年5月5日

加法的例子

  • #!/bin/sh
  • i=1
  • while [ "$i" -lt "34" ]
  • do
  •   echo $i
  •   i=`expr $i + 1`
  • done

  • Full Text