#!/gnu/usr/bin/bash

echo -n "Enter your first name: "
read firstname

if [ "$firstname" = "Kevin" ]; then
	echo "Hi $firstname, welcome back"
else
	echo "Hi $firstname, pleased to meet you"
fi

