Bash Fun Collection I Read Me

[About]
Bash Fun (Collection I) is a collection of small games written in Bash 
shell script. There are four games in the collection, "Guess Number",
"Floor Bomb", "Paper, Scissors, Rock", and "Math Test". The scripts are 
for Bash shell only, and they are not compatible with other shells such as
csh.

[System Requirement]
> An UNIX-based operating system 
> Bash shell 

[Guess Number (guess.sh)]
Guess Number is a very simple game wants the user to guess a number that
was random by the computer. The default range of the random number is from
1 to 100. You can change the range by passing an argument to the script.
For example, "./guess.sh 200" will change the range to 1-200. The tip of
this game is use the binary search method.

[Floor Bomb (bomb.sh)]
Floor bomb is an adventure game. The "X" is you, and the "$" is the
target. Your mission is walk from the startup position to the target.
There will be two bombs hidden in the area, if you walk over the bomb, you
will die. So, beware!

[Paper, Scissors, Rock (psr.sh)]
This is a very popular and classical game in the world. And you should
know about that if you are a human in the world, not an E.T..

[Math Test (math.sh)]
This is a program that test your basic mathematical skill. Do NOT use
calculator when you are playing this game, this is meaningless. There are
only four types of math questions, addition(+), subtraction(-),
multiply(*), and division(/).

----------------------------
MacMonster
Monster Software, 1998-2003.

Enjoy the games! \(^_^)/

