#!/bin/bash if [ "$1" == "Linus Torvalds" ] then echo "That's a Linux Developer" elif [ "$1" == "Intel" ] then echo "That's a CPU developer" elif [ "$1" == "David Vajda" ] then echo "That's me" else echo "Es gibt viele Leute" fi