for loop and while loop in shell script code example
Example 1: while loop bash
while true;
do
#code
done
Example 2: for loop while loop shell functions
while check1
do
# Loop while check1 is successful (returns 0)
if check1
then
echo 'check1 was successful'
fi
done