You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
246 B
15 lines
246 B
#! /usr/bin/bash
|
|
|
|
|
|
|
|
case ${1} in
|
|
'Homer'|'Marge'|'Bart'|'Lisa')
|
|
echo "Familie Simpson"
|
|
;;
|
|
'Ned'|'Maude'|'Todd'|'Rod')
|
|
echo "Familie Flanders"
|
|
;;
|
|
'Clancy'|'Sarah'|'Ralph')
|
|
echo "Familie Wiggum"
|
|
;;
|
|
esac
|
|
|