this is an example bash snippet to force users to enter information in read input command terminal:

 

APP_NAME=""

while [[ $APP_NAME == "" ]]
do
  read -p "Enter the name of the Application: " APP_NAME
  set -e
done