I am a shell script novice and have one which reads: #!/bin/sh set x=10 while ( $x > 0 ) do echo "$x" set x = `expr $x -1` done I'm getting ... 500067
compgroups.net