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

Kali Linux Commands Cheat Sheet: Complete Quick Reference

This cheat sheet covers the essential Kali Linux commands every pentester and ethical hacker uses…

2 weeks ago

What I Wish I Knew Before Learning Malware Analysis and Reverse Engineering

When I first started learning malware analysis and reverse engineering, I thought the hardest part…

2 weeks ago

git fetch vs git pull: How They Work and When to Use Each

Both git fetch and git pull talk to a remote repository, but they do very different things to your…

4 weeks ago

git cherry-pick Command: Apply Commits from Another Branch

Sometimes the change you need already exists, just on the wrong branch. A hotfix lands…

4 weeks ago

Best Email APIs for Secure Business Email: Why Developers Are Moving Beyond SMTP

Email is still one of the most important communication channels inside modern applications. Password resets,…

4 weeks ago

Nginx Commands in Linux: Start, Stop, Reload, Test, and Log

Nginx is a high-performance web server and reverse proxy trusted by some of the largest…

4 weeks ago