#!/bin/bash
if [[ "$1" == "David" && "$2" == "Vajda" ]]
then
echo "Das koennte ich sein"
elif [ "$1" == "David" ]
then
echo "Das ist zumindest mein Vorname"
elif [ "$1" == "Vajda" ]
then
echo "Vom Nachnamen stimmt es"
else
echo "Das bin sicher nicht ich"
fi