ambevar-dotfiles/.scripts/weather

15 lines
174 B
Bash
Executable File

#!/bin/sh
if [ "$1" = "-h" ]; then
cat<<EOF
Usage: ${0##*/} [OPTIONS]
Display weather forecast.
Use '${0##*/} :help' to list all options.
EOF
exit
fi
curl wttr.in/"$1"