4 lines
65 B
Bash
4 lines
65 B
Bash
#!/bin/bash
|
|
report=$(curl wttr.in/?format="%C,+%t")
|
|
echo $report
|
#!/bin/bash
|
|
report=$(curl wttr.in/?format="%C,+%t")
|
|
echo $report
|