run while loop in shell script code example
Example 1: while loop shell script
#!/bin/sh
a=0
while [ $a -lt 10 ]
do
echo $a
a=`expr $a + 1`
done
Example 2: shell script loop while process running
while [ condition ]
do
command1
command2
command3
done