scripts for my gemini capsule
Diffstat (limited to 'getscriptures.sh')
| -rw-r--r-- | getscriptures.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/getscriptures.sh b/getscriptures.sh index 1d0f843..2c1e8e8 100644 --- a/getscriptures.sh +++ b/getscriptures.sh @@ -11,6 +11,12 @@ gettcgnt() { unzip grctcgnt_usfm.zip -d tcgnt rm grctcgnt_usfm.zip } +gethboWLC() { + wget https://ebible.org/Scriptures/hboWLC_usfm.zip + mkdir -p hboWLC + unzip hboWLC_usfm.zip -d hboWLC + rm hboWLC_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" @@ -28,3 +34,4 @@ test -d webp || getweb test -f lsv.txt || getlsv test -d bsb || getbsb test -d tcgnt || gettcgnt +test -d hboWLC || gethboWLC |