scripts for my gemini capsule
NET: Use argv
Zach DeCook 2022-12-24
parent d412a36 · commit 0670aba
-rwxr-xr-xnet.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/net.sh b/net.sh
index 0583bf2..dcb8a11 100755
--- a/net.sh
+++ b/net.sh
@@ -1,5 +1,6 @@
#!/bin/sh
-if [ "$QUERY_STRING" = "" ]
+q="$QUERY_STRING$1"
+if [ "$q" = "" ]
then
printf "10 Enter a scripture reference\r\n"
return
@@ -7,7 +8,7 @@ fi
printf "20 text/gemini\r\n"
-qs="$(echo "$QUERY_STRING" |sed 's/ /\+/g')"
+qs="$(echo "$q" |sed 's/ /\+/g')"
printf "=> https://labs.bible.org This content pulled from bible.org.\n"
# TODO: use &type=xml&formatting=para
req="$(printf 'https://labs.bible.org/api/?passage=%s&type=text' "$qs")"