Bash Scripting - Loops
Identify the error in this script:
count=1 until [ $count -gt 3 ] echo $count ((count++)) done
count=1 until [ $count -gt 3 ] echo $count ((count++)) done
until loops require do after the condition before commands.do after the condition line, causing syntax error.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions