/guessinggame

Guess the number of file in directory!

Primary LanguageMakefile

This is a GUESSINGGAME project

Task was given at Coursera.org at course The Unix Workbench

  1. The date and time at which make was run: 2018-01-20 11:22:37

  2. The number of lines of code contained in guessinggame.sh is: 28

The decription of task:

The guessinggame.sh program have the following behavior:

  • When the program starts the user should be asked how many files are in the current directory, and then the user should be prompted for a guess.
  • If the user's answer is incorrect the user should be advised that their guess was either too low or too high and then they should be prompted to try to guess again.
  • If the user's guess is correct then they should be congratulated and the program should end.
  • The program should not end until the user has entered the correct number of files in the current directory.
  • The program should be able to be run by entering bash guessinggame.sh into the console.
  • The program should contain at least one function, one loop, and one if statement.
  • The program should be more than 20 lines of code but less than 50 lines of code.

The makefile produce the README.md which should contain the following information:

  1. The title of the project.
  2. The date and time at which make was run.
  3. The number of lines of code contained in guessinggame.sh.

This file was generated with Markdown style from makefile.

@VladimirNikiforov