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

#!/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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!