scripts for my gemini capsule
aoyb: fix url
Zach DeCook 2022-01-01
parent d8375da · commit ff2defb
-rwxr-xr-xaoyb.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/aoyb.sh b/aoyb.sh
index ac00698..ef1ab50 100755
--- a/aoyb.sh
+++ b/aoyb.sh
@@ -2,14 +2,14 @@
case "$PATH_INFO" in
"")
printf '20 text/gemini\r\n'
- curl https://audio.oneyearbible.com/ | grep mp3 |sed 's/href="/\t/g' |cut -f2 |cut -d '"' -f1 | sed 's/^/=>/g'
+ curl https://audio.oneyearbibleonline.com/ | grep mp3 |sed 's/href="/\t/g' |cut -f2 |cut -d '"' -f1 | sed 's/^/=>/g'
;;
*.mp3)
printf "20 audio/mpeg\r\n"
- curl --output - "https://audio.oneyearbible.com/$PATH_INFO"
+ curl --output - "https://audio.oneyearbibleonline.com/$PATH_INFO"
;;
*)
printf '20 text/gemini\r\n'
- printf '=> https://audio.oneyearbible.com/%s' "$PATH_INFO"
+ printf '=> https://audio.oneyearbibleonline.com/%s' "$PATH_INFO"
;;
esac