Question: #!/bin/bash x=1 while true do x= 'expr $x + 1' if [$x -le 12]; then continue echo x is $x fi echo x is $x

#!/bin/bash x=1 while true do x= 'expr $x + 1' if [$x -le 12]; then continue echo "x is $x" fi echo "x is $x" if [$x -ge 15]; then echo "x is $x" break; echo "Out at after x=$x" fi done What will be output of above bash shell code. Justify your
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
