2018-09-04 07:33:38 +02:00
|
|
|
function duckduck() { elinks -dump "https://duckduckgo.com/?q=`escape "$@"`"; }
|
2018-01-29 16:10:37 +01:00
|
|
|
function escape() { perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$@"; }
|
2018-09-04 07:33:38 +02:00
|
|
|
function google() { elinks -dump "https://www.google.de/search?q=`escape "$@"`"; }
|
2018-01-29 16:10:37 +01:00
|
|
|
|
2020-06-15 07:35:28 +02:00
|
|
|
function wetter() { curl --tr-encoding -H "Accept-Language: ${LANG%_*}" "https://wttr.in/$@"; }
|
|
|
|
function wetter2() { curl --tr-encoding -H "Accept-Language: ${LANG%_*}" "https://v2.wttr.in/$@"; }
|