diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-11-30 18:08:22 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-11-30 18:08:22 +0530 |
commit | e75bab87fc1638f5593b19c52a8f73ddcfdefdf2 (patch) | |
tree | f752fdfc30f0e8d2706e11eabd7f8453c728130b /scripts/weather | |
parent | bcadd3e7e7f8f8fb77eb4ee4817a7bf92cead858 (diff) |
added a script that gets weather info every hour
Diffstat (limited to 'scripts/weather')
-rwxr-xr-x | scripts/weather | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/weather b/scripts/weather new file mode 100755 index 00000000..3fcab925 --- /dev/null +++ b/scripts/weather @@ -0,0 +1,12 @@ +#!/bin/bash + +get_current_temp() { + temp=$(curl wttr.in | grep °C | awk 'NR==1 {print $9 "°C"}' | sed -r "s/\x1B\[(([0-9]+)(;[0-9]+)*)?[m,K,H,f,J]//g") # > /tmp/weather_temperature) + stat=$(curl wttr.in | awk 'NR==3 {print $1}') + echo $temp "("$stat")" +} + +while :; do + echo $(get_current_temp) > /tmp/weather_stat + sleep 3600 +done |