overwrite meteo alias with fn + french support

This commit is contained in:
Morgan Wattiez 2019-08-17 14:16:10 +02:00
parent b561eb9407
commit 15fe49af8e
2 changed files with 4 additions and 1 deletions

View File

@ -88,7 +88,7 @@ alias pip='pip3'
alias c='cat'
alias x='extract'
alias current_year='`echo date +"%Y"`'
alias meteo='weather'
#alias meteo='weather'
alias learnmore="apropos . | sort --random-sort | awk 'NR == 1 {print$1}' | cut -d'(' -f 1 | xargs man"
alias biggerthan10='biggerthan 10M'
alias latency='curl cheat.sh/latency'

View File

@ -117,3 +117,6 @@ function mouse() {
;;
esac
}
function meteo() {
curl "fr.wttr.in/$*"
}