#!/bin/bash # # A prompt message is displayed without carriage return # and the user input is read # and processed with a case statement # #echo -n ' Respond with (Y/N) [N]: ' #read ans read -p " Respond with (Y/N) [N]: " ans case "$ans" in [Yy] ) echo "User entered Yes";; [Nn] ) echo "User entered No";; * ) echo "Invalid input";; esac