EX200 • Practice Test 23
Free EX200 practice test — 15 questions with explanations. Set 23. No signup required.
A developer runs the script shown in the exhibit and always sees 'Success' printed, even when the previous command fails. What is the most likely cause?
Refer to the exhibit. ```bash #!/bin/bash # Script to test a condition if [[ $? -eq 0 ]]; then echo 'Success' fi ```