Skip to content

Commit

Permalink
Spelling mistake and updated the README.
Browse files Browse the repository at this point in the history
  • Loading branch information
asreimer committed Mar 5, 2016
1 parent 2c7d555 commit 3d8dce5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
10 changes: 9 additions & 1 deletion README.md
@@ -1,2 +1,10 @@
# bash_hangman
# Hangman in BASH
A basic UNIX terminal based hangman game written in Bash.

This is a hangman game that I wrote in the Bourne again shell (Bash UNIX shell) while trying to learn some of the syntax. The main game is started by executing the hangman script using:

> ./hangman
in a bash terminal. This game looks for a dict.dat file full of words that are randomly selected from.

Enjoy!
8 changes: 6 additions & 2 deletions hangman
@@ -1,7 +1,7 @@
#!/bin/bash
#
#
# A HANGMAN GAME WRITTEN FOR THE BORN AGAIN SHELL!
# A HANGMAN GAME WRITTEN FOR THE BOURNE AGAIN SHELL!
#
# This game was coded for fun while I was trying to learn bash. To play the game
# ensure that this script has execute permissions and then type ./hangman in the
Expand All @@ -10,7 +10,11 @@
# This game reads a list of words from a dict.dat file in the same directory as
# the hangman script.
#

# Author: Ashton Seth Reimer
# Date: Summer 2010
# License: See the license file included in the repository on github:
# https://github.com/asreimer/bash_hangman
#

#initialize the variables and arrays we need
declare -a word
Expand Down

0 comments on commit 3d8dce5

Please sign in to comment.