shell do while 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: bash do-while
while : ; do
ACTION_CODE
[[ CONDITION_STATEMENT ]] || break
done
#!/bin/sh
a=0
while [ $a -lt 10 ]
do
echo $a
a=`expr $a + 1`
done
while : ; do
ACTION_CODE
[[ CONDITION_STATEMENT ]] || break
done