bbl

Read, search and index the Bible on the command line -- Greek, Latin, KJV, Knox, RSV, and more
git clone git://git.wilsonrgheen.com/bbl
Log | Files | Refs | README | LICENSE

commit 4808273f467c733dedd955598dee54bdfd53f549
parent eef8578f968aebb4fd63bfd2c1932d76ce70f52a
Author: Wilson Gheen <wilson@wilsonrgheen.com>
Date:   Sat, 12 Feb 2022 13:14:33 -0600

Fixed problem that made it impossible to enter interactive mode

Diffstat:
Mbbl.sh | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/bbl.sh b/bbl.sh @@ -130,6 +130,7 @@ if [ $? -eq 0 ]; then for b in $BIBLE; do versions=$(( versions + 1 )) done + [ $versions -eq 0 ] && versions=1 # For interactive mode spaceBetween=$(( 8 * (versions - 1))) export KJV_MAX_WIDTH="$(( (cols - spaceBetween) / versions ))" fi