7 lines
118 B
Bash
Executable File
7 lines
118 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FORMAT="%C,+%t+(feels+like+%f)+Wind:+%w&M"
|
|
WEATHER=$(curl -s wttr.in/?format=$FORMAT)
|
|
|
|
printf "$WEATHER\n"
|