5 lines
109 B
Bash
Executable File
5 lines
109 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Obtain a weather forecast
|
|
|
|
echo "${@}" | xargs --no-run-if-empty -I {} curl wttr.in/{}
|