fork download
  1. iCheck=1
  2. iNum=3
  3. while test ${iCheck} -le ${iNum}
  4. do
  5. iCheck=`expr ${iCheck} \* ${iCheck}`
  6. echo ${iCheck}
  7. iCheck=`expr $iCheck + 1`
  8. done
Success #stdin #stdout 0.01s 5556KB
stdin
Standard input is empty
stdout
1
4