use standard placeholder characters in usage
This commit is contained in:
parent
a9acb125aa
commit
996c670c2c
18
README.md
18
README.md
|
|
@ -8,24 +8,24 @@ Read the Word of God from your terminal
|
|||
-h show help
|
||||
|
||||
References types:
|
||||
{Book}
|
||||
<Book>
|
||||
Individual book
|
||||
{Book}:{Chapter}
|
||||
<Book>:<Chapter>
|
||||
Individual chapter of a book
|
||||
{Book}:{Chapter}:{Verse}
|
||||
<Book>:<Chapter>:<Verse>
|
||||
Individual verse of a specific chapter of a book
|
||||
{Book}:{Chapter}-{Chapter}
|
||||
<Book>:<Chapter>-<Chapter>
|
||||
Range of chapters in a book
|
||||
{Book}:{Chapter}:{Verse}-{Verse}
|
||||
<Book>:<Chapter>:<Verse>-<Verse>
|
||||
Range of verses in a book chapter
|
||||
{Book}:{Chapter}:{Verse}-{Chapter}:{Verse}
|
||||
<Book>:<Chapter>:<Verse>-<Chapter>:<Verse>
|
||||
Range of chapters and verses in a book
|
||||
|
||||
/{Search}
|
||||
/<Search>
|
||||
All verses that match a pattern
|
||||
{Book}/{Search}
|
||||
<Book>/<Search>
|
||||
All verses in a book that match a pattern
|
||||
{Book}:{Chapter}/{Search}
|
||||
<Book>:<Chapter>/<Search>
|
||||
All verses in a chapter of a book that match a pattern
|
||||
|
||||
## License
|
||||
|
|
|
|||
18
kjv.sh
18
kjv.sh
|
|
@ -24,24 +24,24 @@ show_help() {
|
|||
echo " -h show help"
|
||||
echo
|
||||
echo " References types:"
|
||||
echo " {Book}"
|
||||
echo " <Book>"
|
||||
echo " Individual book"
|
||||
echo " {Book}:{Chapter}"
|
||||
echo " <Book>:<Chapter>"
|
||||
echo " Individual chapter of a book"
|
||||
echo " {Book}:{Chapter}:{Verse}"
|
||||
echo " <Book>:<Chapter>:<Verse>"
|
||||
echo " Individual verse of a specific chapter of a book"
|
||||
echo " {Book}:{Chapter}-{Chapter}"
|
||||
echo " <Book>:<Chapter>-<Chapter>"
|
||||
echo " Range of chapters in a book"
|
||||
echo " {Book}:{Chapter}:{Verse}-{Verse}"
|
||||
echo " <Book>:<Chapter>:<Verse>-<Verse>"
|
||||
echo " Range of verses in a book chapter"
|
||||
echo " {Book}:{Chapter}:{Verse}-{Chapter}:{Verse}"
|
||||
echo " <Book>:<Chapter>:<Verse>-<Chapter>:<Verse>"
|
||||
echo " Range of chapters and verses in a book"
|
||||
echo
|
||||
echo " /{Search}"
|
||||
echo " /<Search>"
|
||||
echo " All verses that match a pattern"
|
||||
echo " {Book}/{Search}"
|
||||
echo " <Book>/<Search>"
|
||||
echo " All verses in a book that match a pattern"
|
||||
echo " {Book}:{Chapter}/{Search}"
|
||||
echo " <Book>:<Chapter>/<Search>"
|
||||
echo " All verses in a chapter of a book that match a pattern"
|
||||
exit 2
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue