LDP/LDP/guide/docbook/abs-guide/ex32.sh

25 lines
405 B
Bash
Raw Permalink Normal View History

2001-07-10 14:25:50 +00:00
#!/bin/bash
PS3='Choose your favorite vegetable: '
echo
choice_of()
{
select vegetable
# [in list] omitted, so 'select' uses arguments passed to function.
do
echo
echo "Your favorite veggie is $vegetable."
echo "Yuck!"
echo
break
done
}
2012-11-27 14:56:18 +00:00
choice_of beans rice carrots radishes rutabaga spinach
2001-07-10 14:25:50 +00:00
# $1 $2 $3 $4 $5 $6
# passed to choice_of() function
exit 0