while loop in shell scrioptin g code example Example: while loop shell script #!/bin/sh a=0 while [ $a -lt 10 ] do echo $a a=`expr $a + 1` done