Verzeichnisse in die korrekte Reihenfolge umbenannt.

This commit is contained in:
2025-06-19 06:24:38 +02:00
parent dcaafa8604
commit 1af089d106
4 changed files with 1 additions and 0 deletions

9
teil23/family_if.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/bash
if [[ "$1" == "Homer" || "$1" == "Marge" || "$1" == "Bart" || "$1" == "Lisa" ]]; then
echo "Familie Simpson"
elif [[ "$1" == "Ned" || "$1" == "Maude" || "$1" == "Todd" || "$1" == "Rod" ]]; then
echo "Familie Flanders"
elif [[ "$1" == "Clancy" || "$1" == "Sarah" || "$1" == "Ralph" ]]; then
echo "Familie Wiggum"
fi