(no title)
igor_chubin | 3 years ago
You can try to run it with any command that has ANSI output, and you will see it.
As a simple alternative, you write your own 'watch' like this:
while true; do curl -s wttr.in; sleep 60; clear; done
igor_chubin | 3 years ago
You can try to run it with any command that has ANSI output, and you will see it.
As a simple alternative, you write your own 'watch' like this:
while true; do curl -s wttr.in; sleep 60; clear; done
teddyh|3 years ago
Kim_Bruning|3 years ago
According to The Fine Manual: watch --color (-c for short) , should render color correctly, eg.
but doesn't quite play ball.In the end I went with something like your solution. I didn't need to put the sleep 60 as the first operation though.
^C breaks out of this loop just fine on my system.