case command in Linux with examples
case command in Linux is the best alternative when we had to use multiple if/elif on a single variable. It is used to execute the commands based on the pattern matching.
Syntax:
case WORD in [PATTERN [| PATTERN]...) COMMANDS ;;]... esac
Example:
Options:
- help case : It displays help information.
Please Login to comment...