
#!/bin/ksh
## maxcount.ksh
#= test script to get max var


COUNT=0
while true
do
  let "COUNT= ${COUNT} +10"
  echo ${COUNT}
done

exit 0

