bin/doc @ dd879591c545

Hack together a little weather CLI
author Steve Losh <steve@stevelosh.com>
date Sun, 30 Aug 2020 21:13:42 -0400
parents f89078a3dc08
children 613dc4aa9f25
#!/usr/bin/env bash

set -euo pipefail

LANG=$1
shift

if test "$LANG" -eq "go"; then
    LANG=golang
fi

QUERY=$(echo -n "$@" | urlencode)

w3m "https://duckduckgo.com/?q=$LANG+$QUERY"