vim ~/.bashrc
``` alias weather='/usr/bin/curl wttr.in' ``` :wq
and now:
weather
alias weather="curl wttr.in && curl v2.wttr.in && curl v3.wttr.in"
curl wttr.in/:help
Tou get a help document, which also shows you a way to get a suggested bash function; to wit:
curl wttr.in/:bash.function
vim ~/.bashrc
``` alias weather='/usr/bin/curl wttr.in' ``` :wq
and now:
weather