Write a bash script that uses a while loop to continuously prompt the user for their name until they enter “quit” to exit. Use the read -p option for the prompt.

Example Output:

$ ./name_prompt.sh
Enter your name: Alice
Hello, Alice!
Enter your name: Bob
Hello, Bob!
Enter your name: quit
Goodbye!