added wttr.in

This commit is contained in:
Tobias Schmidl 2018-09-04 07:44:03 +02:00 committed by GitHub
parent 64c17fd95a
commit ae3afd15b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,3 +2,4 @@ function duckduck() { elinks -dump "https://duckduckgo.com/?q=`escape "$@"`"; }
function escape() { perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$@"; } function escape() { perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$@"; }
function google() { elinks -dump "https://www.google.de/search?q=`escape "$@"`"; } function google() { elinks -dump "https://www.google.de/search?q=`escape "$@"`"; }
function wetter() { curl -H "Accept-Language: ${LANG%_*}" "https://wttr.in/$@"; }