about summary refs log tree commit diff
path: root/net.sh
diff options
context:
space:
mode:
Diffstat (limited to 'net.sh')
-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")"