#!/bin/bash $web="example.com" case $web in forest.com) echo "It's forest.";; animal|human) echo "Maybe animal or maybe human";; example.com) echo "This is a site!";; *) echo $web;; esac