while in bash code example
Example 1: while loop bash
while true;
do
done
Example 2: while loop shell script
#!/bin/sh
a=0
while [ $a -lt 10 ]
do
echo $a
a=`expr $a + 1`
done
Example 3: linux while loop
while true;
do
;done
Example 4: bash while done
while CONDITION_STATEMENT; do SOME_CODE; done
Example 5: for while bash
Use for in bash for iterating words in a string or values in an array as:
for value in {1, 2, 3}; do echo $value; done
for value in $(cat arguments_files.txt); do [some_command]; done
And use while for iterating lines from a pipe output as:
cat arguments_file.txt | while read line; do [some_command]; done
Example 6: bash do-while
while : ; do
ACTION_CODE
[[ CONDITION_STATEMENT ]] || break
done