Problem Statement
Which of the following executes until a condition becomes false?
Explanation
A while loop keeps executing as long as the test condition is true.
It is commonly used for reading files line by line or running background checks.
Code Solution
SolutionRead Only
while [ $count -le 5 ]; do echo $count ((count++)) done