Question: Please help me find the four problems with this script. Below is an example output of the script. tmoyer2@itis-3246:~/scripting-2$ ./3-loops.sh The current value is 1
Please help me find the four problems with this script. Below is an example output of the script.
tmoyer2@itis-3246:~/scripting-2$ ./3-loops.sh The current value is 1 The current value is 2 The current value is 3 The current value is 4 The current value is 5 The current count is 0 The current count is 1 The current count is 2 The current count is 3 The current count is 4 The current count is 5 The current count is 6 The current count is 7 The current count is 8 The current count is 9 T-minus 10 T-minus 9 T-minus 8 T-minus 7 T-minus 6 T-minus 5 T-minus 4 T-minus 3 T-minus 2 T-minus 1 Blast off! Count is now 0 Count is now 2 Count is now 4 Count is now 6 Count is now 8 Count is now 10 Count is now 12 Count is now 14 Count is now 16 Count is now 18 Count is now 20
Script:
#!/bin/bash
for value in {1..5} echo "The current value is $value" rof
whileCount=0 while [ $whileCount -lt 10 ] do echo "The current count is $whileCount" done
untilCount=10 until [ $untilCount -eq 0 ] echo "T-minus $untilCount" ((untilCount--)) done echo "Blast off!"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
