#!/bin/bash # This script will not work properly. # The until loop does not allow user to change # value of the variable used in the until loop test. # Therefore, the script will go into an "infinite loop" # Assign secret name name="Murray" # Prompt user to guess name printf "\nPlease guess my name: " read name_guess # Here is the problem >:( until [ "$name_guess" = "$name" ] do printf "Incorrect: Please try again!" done # End of shell script