diff --git a/shell/.functions b/shell/.functions index 4f527cf..85a4036 100644 --- a/shell/.functions +++ b/shell/.functions @@ -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' +}