5 lines
84 B
Bash
Executable File
5 lines
84 B
Bash
Executable File
#!/bin/sh -eu
|
|
|
|
readonly city="${1}"
|
|
curl "wttr.in/${city}" 2>/dev/null | head -n -1
|