Hey Day A Simple Script for October the Sixteenth that can be found here First, add your shebang line #!/bin/bash Then, the echo command will ask the user for their name echo "What is your name?" read -s will allow the user to add their name without seeing their input on the STDOUT. read -s name Lastly, echo will greet the user, informing them of Hey Day! echo "Hey, $name! Did you know today is Hey Day?!" This event is a yearly tradition that dates back to shortly after the second world-war. Every year on October the 15th, Auburn students wear name tags and greet one another wherever they go that day. You can find more about the history of Hey Day here