#!/bin/sh -eu

readonly city="${1}"
curl "wttr.in/${city}" 2>/dev/null | head -n -1
