zsh/browser.zsh

6 lines
329 B
Bash
Raw Normal View History

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]);' "$@"; }
function google() { elinks -dump "https://www.google.de/search?q=`escape "$@"`"; }
2018-01-29 16:10:37 +01:00
2020-03-30 14:49:48 +02:00
function wetter() { curl -H "Accept-Language: ${LANG%_*}" "https://v2.wttr.in/$@"; }