Attempt at a Wordle game through Bash scripting.
- Create or find an online 5 letter word database.
- Game randomly chooses a word from DB
- Game starts, game asks user to input a 5 letter word
- Once word is inputted, we check if the word inputted is in DB. If not in DB, throw error message and ask user to input again.
- Check each letter inputted against the letters in the word. Correct letters in the right spot are outputted in Green, correct letters in incorrect spot outputted in yellow.
- need to lookup and think of a proper algorithm
- Game loops 5 times, if user cannot find word, game ends.