Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

make a question in bash script

echo "Do you wish to install this program?"
select yn in "Yes" "No"; do
    case $yn in
        Yes ) make install; break;;
        No ) exit;;
    esac
done
 
PREVIOUS NEXT
Tagged: #question #bash #script
ADD COMMENT
Topic
Name
4+3 =