What Is Do While In Shell Script With Example?
What Is Do While In Shell Script With Example? Tutorial details Est. reading time 1 minute What is do while script with example? while [ condition ] do command1 command2 commandN done. while [[ condition ]] ; do command1 command1 commandN done. while ( condition ) commands end. #!/bin/bash c=1 while [ $c -le 5