Y
Hacker News
new
|
ask
|
show
|
jobs
by
fabiendem
3723 days ago
Nice! :) alias weather="wget -O -
http://wttr.in/london
-q"
2 comments
xupybd
3723 days ago
Slight tweak watch --color "wget -O -
http://wttr.in/Palmerston_North
-q" Not that its going to need to update that much, its just, well it makes me feel like it's more accurate that way.
link
dtzWill
3723 days ago
You might want to use wego[1] directly if you're interested in weather reports in your terminal, if the dependencies aren't an issue.
[1]
https://github.com/schachmat/wego
link
tux
3723 days ago
Using 'watch' 'curl' (refresh every minute)
watch --color -n60 'curl -q
http://wttr.in/london'
link