From 6d8988b6c7349e08393f1d51e7b09ea5fef008fd Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Mon, 11 Dec 2023 18:21:24 -0500 Subject: bible: add tcgnt --- getscriptures.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'getscriptures.sh') diff --git a/getscriptures.sh b/getscriptures.sh index dcd38e3..1d0f843 100644 --- a/getscriptures.sh +++ b/getscriptures.sh @@ -5,6 +5,12 @@ getweb() { unzip engwebp_usfm.zip -d webp rm engwebp_usfm.zip } +gettcgnt() { + wget https://ebible.org/Scriptures/grctcgnt_usfm.zip + mkdir -p tcgnt + unzip grctcgnt_usfm.zip -d tcgnt + rm grctcgnt_usfm.zip +} getlsv() { url="$(wget -O - https://www.lsvbible.com/p/get-lsv.html | grep Plain\ Text | grep -o 'https://[^"]*' | sed 's/amp;//g')" wget -O lsv.zip "$url" @@ -21,3 +27,4 @@ getbsb() { test -d webp || getweb test -f lsv.txt || getlsv test -d bsb || getbsb +test -d tcgnt || gettcgnt -- cgit 1.4.1