[ADD][SHELL] Display the weather with 'meteo'

This commit is contained in:
Bruno BELANYI 2019-10-06 21:36:59 +02:00
parent 2b43844029
commit e060a9ef6d

View file

@ -55,3 +55,7 @@ function mcd() {
cd "$1"
}
# Weather in your terminal, optionally take the city in argument (e.g: VPN)
function meteo() {
curl "http://wttr.in/$1" # Bonus: try to see the weather on 'moon'
}