Chapter 13 #!/bin/bash echo “Guess the secret color” read COLOR if [ $COLOR=”purple” ] then echo “You are correct.” else echo “Your guess was incorrect.” fi -------------------------------------- read COLOR if [ $COLOR=”purple” ] then echo “You are correct.” elif [ $COLOR=”blue” ] echo “You’re close.” else echo “Your guess was incorrect.” fi -------------------------------------- #!/bin/bash echo “Guess the secret color: red, blue, yellow, purple, or orange \n” read COLOR while [ $COLOR != “purple” ] do echo “Incorrect. Guess again. \n” read $COLOR done echo “Correct.”