#!/bin/bash if [ "$1" == "Max Mustermann" ] then echo "Hallo" elif [ "$1" == "Martin Mustermann" ] then echo "Tschüss" else echo "Super" fi