From 996c670c2c57c4b10dffa1305d918b3eb16017ff Mon Sep 17 00:00:00 2001 From: Tim Cooper Date: Sat, 11 Aug 2018 09:33:55 -0300 Subject: [PATCH] use standard placeholder characters in usage --- README.md | 18 +++++++++--------- kjv.sh | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 30a26e9..e11c6f4 100644 --- a/README.md +++ b/README.md @@ -8,24 +8,24 @@ Read the Word of God from your terminal -h show help References types: - {Book} + Individual book - {Book}:{Chapter} + : Individual chapter of a book - {Book}:{Chapter}:{Verse} + :: Individual verse of a specific chapter of a book - {Book}:{Chapter}-{Chapter} + :- Range of chapters in a book - {Book}:{Chapter}:{Verse}-{Verse} + ::- Range of verses in a book chapter - {Book}:{Chapter}:{Verse}-{Chapter}:{Verse} + ::-: Range of chapters and verses in a book - /{Search} + / All verses that match a pattern - {Book}/{Search} + / All verses in a book that match a pattern - {Book}:{Chapter}/{Search} + :/ All verses in a chapter of a book that match a pattern ## License diff --git a/kjv.sh b/kjv.sh index 0a8d9b0..b135621 100755 --- a/kjv.sh +++ b/kjv.sh @@ -24,24 +24,24 @@ show_help() { echo " -h show help" echo echo " References types:" - echo " {Book}" + echo " " echo " Individual book" - echo " {Book}:{Chapter}" + echo " :" echo " Individual chapter of a book" - echo " {Book}:{Chapter}:{Verse}" + echo " ::" echo " Individual verse of a specific chapter of a book" - echo " {Book}:{Chapter}-{Chapter}" + echo " :-" echo " Range of chapters in a book" - echo " {Book}:{Chapter}:{Verse}-{Verse}" + echo " ::-" echo " Range of verses in a book chapter" - echo " {Book}:{Chapter}:{Verse}-{Chapter}:{Verse}" + echo " ::-:" echo " Range of chapters and verses in a book" echo - echo " /{Search}" + echo " /" echo " All verses that match a pattern" - echo " {Book}/{Search}" + echo " /" echo " All verses in a book that match a pattern" - echo " {Book}:{Chapter}/{Search}" + echo " :/" echo " All verses in a chapter of a book that match a pattern" exit 2 }