x

Programs, configuration and documentation that don't fit anywhere else
Log | Files | Refs | README | LICENSE

commit 5e118710cbcb512c83aed6d323d00169344d4806
parent 190a59c46ff2c52e9755cafff724c97d083a3aff
Author: Oliver Lowe <o@olowe.co>
Date:   Sun, 10 Nov 2024 11:40:26 +1100

ws: correctly url-encode query

Diffstat:
Mbin/ws | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/ws b/bin/ws @@ -17,4 +17,4 @@ prog=' } ' -curl -s -d "q=$@" -H "User-Agent: $firefox" https://lite.duckduckgo.com/lite/ | awk "$prog" +curl -s --data-urlencode "q=$@" -H "User-Agent: $firefox" https://lite.duckduckgo.com/lite/ | awk "$prog"