How To

Bash Case Statement: How To Match Patterns In Shell Scripts

Introduction

The Bash case statement is used to match one value against multiple patterns. It is very useful when you want to create menu-based scripts, check user input, handle different options, or run different commands based on a selected value.

If you are learning Bash scripting, the case statement is an important topic after understanding if else. While if else is good for simple conditions, the case statement is cleaner when you have many possible choices.

Bash case statements are commonly used in Linux automation, cybersecurity scripts, system administration tools, backup scripts, and command-line menus.

What Is A Case Statement In Bash?

A case statement compares a value with different patterns. When a matching pattern is found, the related command is executed.

Basic syntax:

case value in    pattern1)        command        ;;    pattern2)        command        ;;    *)        default command        ;;esac

The case statement starts with case and ends with esac. The ;; symbol is used to end each pattern block.

Basic Bash Case Statement Example

Create a new Bash script:

nano case-example.sh

Add the following code:

#!/bin/bashday="Monday"case $day in    Monday)        echo "Today is Monday"        ;;    Tuesday)        echo "Today is Tuesday"        ;;    Wednesday)        echo "Today is Wednesday"        ;;    *)        echo "Unknown day"        ;;esac

Save the file and run it:

chmod +x case-example.sh./case-example.sh

Output:

Today is Monday

Bash Case Statement With User Input

The case statement is often used with user input.

#!/bin/bashecho "Choose an option:"echo "1. Show current user"echo "2. Show current directory"echo "3. Show current date"read -p "Enter your choice: " choicecase $choice in    1)        whoami        ;;    2)        pwd        ;;    3)        date        ;;    *)        echo "Invalid option"        ;;esac

This script creates a simple command-line menu. Based on the user’s choice, it runs a different Linux command.

Using Multiple Patterns In Bash Case

You can match multiple patterns using the | symbol.

#!/bin/bashread -p "Enter yes or no: " answercase $answer in    yes|Yes|y|Y)        echo "You selected yes"        ;;    no|No|n|N)        echo "You selected no"        ;;    *)        echo "Invalid answer"        ;;esac

This is useful when you want to accept different versions of the same input.

Conclusion

The Bash case statement is a clean and simple way to match patterns in shell scripts. It is especially useful when handling multiple choices, user input, and menu-based scripts.

For beginners, learning the case statement helps you write better Bash scripts with clear logic. It is widely used in Linux automation, cybersecurity tools, server scripts, and command-line utilities.

Cyber Defence

Recent Posts

groupdel Command in Linux: Remove a Group and Audit Files

The groupdel command in Linux removes a group from the system. It deletes the group's entry from /etc/group and /etc/gshadow,…

16 hours ago

wc Command in Linux: Count Lines, Words, Characters, and Bytes

The wc command in Linux counts lines, words, characters, and bytes in files or standard input. It…

16 hours ago

top Command in Linux: Monitor Processes and Resource Usage

The top command in Linux provides a real-time view of running processes and system resource usage. From…

16 hours ago

usermod Command in Linux: Modify User Accounts and Groups

The usermod command in Linux modifies existing user account attributes. You can use it to manage group…

16 hours ago

sort Command in Linux: Sort Text, Numbers, Columns, and More

The sort command in Linux reads lines from files or standard input and writes them to standard…

2 days ago

wall Command in Linux: Broadcast Messages to Logged-In Users

The wall command in Linux sends a message to the terminals of all currently logged-in users. The…

2 days ago