Check weather from the command line

in #tutorial6 years ago

I've been posting tutorials mainly focused on music production. This one is from a new YouTube channel I'm starting focusing on computers and tech. This tutorial will show you how to check the weather from the command line via Linux and OS X terminals.

Would you like to see a how to on a specific topic? Let me know in the comments here or on YouTube.

https://wttr.in/
https://github.com/chubin/wttr.in

To retrieve the weather:

curl wttr.in

To add as an alias:

  1. sudo vim .bashrc
  2. alias wtr='curl wttr.in'
  3. source .bashrc