|
|
|
|
@ -7,22 +7,23 @@ function web_search() { |
|
|
|
|
typeset -A urls |
|
|
|
|
urls=( |
|
|
|
|
$ZSH_WEB_SEARCH_ENGINES |
|
|
|
|
google "https://www.google.com/search?q=" |
|
|
|
|
bing "https://www.bing.com/search?q=" |
|
|
|
|
yahoo "https://search.yahoo.com/search?p=" |
|
|
|
|
duckduckgo "https://www.duckduckgo.com/?q=" |
|
|
|
|
startpage "https://www.startpage.com/do/search?q=" |
|
|
|
|
yandex "https://yandex.ru/yandsearch?text=" |
|
|
|
|
github "https://github.com/search?q=" |
|
|
|
|
baidu "https://www.baidu.com/s?wd=" |
|
|
|
|
ecosia "https://www.ecosia.org/search?q=" |
|
|
|
|
goodreads "https://www.goodreads.com/search?q=" |
|
|
|
|
qwant "https://www.qwant.com/?q=" |
|
|
|
|
givero "https://www.givero.com/search?q=" |
|
|
|
|
stackoverflow "https://stackoverflow.com/search?q=" |
|
|
|
|
wolframalpha "https://www.wolframalpha.com/input/?i=" |
|
|
|
|
archive "https://web.archive.org/web/*/" |
|
|
|
|
scholar "https://scholar.google.com/scholar?q=" |
|
|
|
|
google "https://www.google.com/search?q=" |
|
|
|
|
bing "https://www.bing.com/search?q=" |
|
|
|
|
brave "https://search.brave.com/search?q=" |
|
|
|
|
yahoo "https://search.yahoo.com/search?p=" |
|
|
|
|
duckduckgo "https://www.duckduckgo.com/?q=" |
|
|
|
|
startpage "https://www.startpage.com/do/search?q=" |
|
|
|
|
yandex "https://yandex.ru/yandsearch?text=" |
|
|
|
|
github "https://github.com/search?q=" |
|
|
|
|
baidu "https://www.baidu.com/s?wd=" |
|
|
|
|
ecosia "https://www.ecosia.org/search?q=" |
|
|
|
|
goodreads "https://www.goodreads.com/search?q=" |
|
|
|
|
qwant "https://www.qwant.com/?q=" |
|
|
|
|
givero "https://www.givero.com/search?q=" |
|
|
|
|
stackoverflow "https://stackoverflow.com/search?q=" |
|
|
|
|
wolframalpha "https://www.wolframalpha.com/input/?i=" |
|
|
|
|
archive "https://web.archive.org/web/*/" |
|
|
|
|
scholar "https://scholar.google.com/scholar?q=" |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
# check whether the search engine is supported |
|
|
|
|
@ -47,6 +48,7 @@ function web_search() { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias bing='web_search bing' |
|
|
|
|
alias brs='web_search brave' |
|
|
|
|
alias google='web_search google' |
|
|
|
|
alias yahoo='web_search yahoo' |
|
|
|
|
alias ddg='web_search duckduckgo' |
|
|
|
|
|