From 7e894859d97fc72e7e32200dec563992885e43e5 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sat, 3 Feb 2024 06:44:08 +0000 Subject: [PATCH] docs: update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ed94370..c1cc9da 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,10 @@ ### Summary -Bookbot reads a book from a text file and prints a simple book report to the standard output. +Bookbot reads a book from a text file, +counts the number of words and characters in the book +and prints the results in a simple book report to the +standard output (console screen). ### Requirements @@ -27,7 +30,7 @@ Download a book in text format (e.g. txt, markdown, etc). As an example you can download the free ebook called `Frankenstein or The Modern Prometheus` from [here](https://raw.githubusercontent.com/asweigart/codebreaker/master/frankenstein.txt). ```sh -mkdir books +mkdir -p books curl -L https://raw.githubusercontent.com/asweigart/codebreaker/master/frankenstein.txt -o books/frankenstein.txt ```