mirror of
https://github.com/nboughton/dotfiles
synced 2024-11-23 09:02:00 +01:00
7 lines
167 B
Bash
Executable File
7 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
report=$(curl -q wttr.in/?format="%c+%t" 2>/dev/null)
|
|
if [[ $report =~ "Unknown location" || $report =~ "Sorry" ]]; then
|
|
report="No data"
|
|
fi
|
|
echo $report
|