From d412a36838a37d647fb02c2f6607951072eb5f1e Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Thu, 22 Dec 2022 15:35:18 -0500 Subject: net.sh: Use wget instead of curl --- net.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net.sh') diff --git a/net.sh b/net.sh index 5ddaa16..0583bf2 100755 --- a/net.sh +++ b/net.sh @@ -14,7 +14,7 @@ req="$(printf 'https://labs.bible.org/api/?passage=%s&type=text' "$qs")" #echo "$req" echo "#$qs" | sed 's/+/ /g' # todo: indicate scripture citations and allusions? -curl -s "$req" | sed 's@ *[0-9:]* *@ @g' | sed 's@@@g' +wget -q -O - "$req" | sed 's@ *[0-9:]* *@ @g' | sed 's@@@g' # end with a newline echo '' echo '(NET)' -- cgit 1.4.1