Selecione Bash Loop
#!/bin/bash
PS3="Enter your choice ==> "
echo "What do you do?"
select answer in Student Businessman Professional Fresher
do
echo "Great! You're a $answer!"
done
Jumping Boy