Answers for "case $1 in shell script"

1

case statement example shell scripting

#!/bin/sh

echo "Please talk to me ..."
while :
do
  read INPUT_STRING
  case $INPUT_STRING in
	hello)
		echo "Hello yourself!"
		;;
	bye)
		echo "See you again!"
		break
		;;
	*)
		echo "Sorry, I don't understand"
		;;
  esac
done
echo 
echo "That's all folks!"
Posted by: Guest on May-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language