This video tutorial will show you how to retrieve the weather via the command line using curl and the website https://wttr.in/
- https://wttr.in/
- https://github.com/chubin/wttr.in
To retrieve the weather type the following at your command line:
curl wttr.in
To add as an alias:
sudo vim .bashrc
alias wtr='curl wttr.in'
source .bashrc