From 0670aba0246cc75f704e12cc925b170d37b116e1 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Sat, 24 Dec 2022 06:16:24 -0500 Subject: NET: Use argv --- net.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'net.sh') 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")" -- cgit 1.4.1