Problem Statement
Which keyword ends a case statement in Bash?
Explanation
The case statement in Bash ends with the keyword 'esac', which is 'case' spelled backward.
It’s used for multi-branch conditions similar to switch-case in other programming languages.
Code Solution
SolutionRead Only
case $option in 1) echo 'Start';; 2) echo 'Stop';; *) echo 'Invalid';; esac