#!/bin/sh #IF-ELSE statement SECRET_WORD="HELLO" echo "enter a word" read WORD if [ "$SECRET_WORD" == "$WORD" ]; then echo "You are correct!" else echo "You are wrong!" fi