web-search.plugin.zsh 1.57 KB
Newer Older
Hong Xu's avatar
Hong Xu committed
1
2
3
# web_search from terminal

function web_search() {
4
5
6
7
8
9
10
11
12
  emulate -L zsh

  # define search engine URLS
  typeset -A urls
  urls=(
    google      "https://www.google.com/search?q="
    bing        "https://www.bing.com/search?q="
    yahoo       "https://www.yahoo.com/search?q="
    duckduckgo  "https://www.duckduckgo.com/?q="
13
    yandex      "http://yandex.ru/yandsearch?text="
14
15
16
17
18
19
20
21
22
23
  )

  # define the open command
  case "$OSTYPE" in
    darwin*)  open_cmd="open" ;;
    linux*)   open_cmd="xdg-open" ;;
    *)        echo "Platform $OSTYPE not supported"
              return 1
              ;;
  esac
Hong Xu's avatar
Hong Xu committed
24
25

  # check whether the search engine is supported
26
  if [[ -z "$urls[$1]" ]]; then
Hong Xu's avatar
Hong Xu committed
27
28
29
30
    echo "Search engine $1 not supported."
    return 1
  fi

31
32
33
34
35
  # search or go to main page depending on number of arguments passed
  if [[ $# -gt 1 ]]; then
    # build search url:
    # join arguments passed with '+', then append to search engine URL
    url="${urls[$1]}${(j:+:)@[2,-1]}"
stibinator's avatar
stibinator committed
36
  else
37
38
39
    # build main page url:
    # split by '/', then rejoin protocol (1) and domain (2) parts with '//'
    url="${(j://:)${(s:/:)urls[$1]}[1,2]}"
stibinator's avatar
stibinator committed
40
  fi
Hong Xu's avatar
Hong Xu committed
41

42
  nohup $open_cmd "$url" >/dev/null 2&>1
Hong Xu's avatar
Hong Xu committed
43
44
}

stibinator's avatar
stibinator committed
45

Hong Xu's avatar
Hong Xu committed
46
47
48
alias bing='web_search bing'
alias google='web_search google'
alias yahoo='web_search yahoo'
stibinator's avatar
stibinator committed
49
alias ddg='web_search duckduckgo'
50
51
alias yandex='web_search yandex'

stibinator's avatar
stibinator committed
52
53
54
55
56
57
#add your own !bang searches here
alias wiki='web_search duckduckgo \!w'
alias news='web_search duckduckgo \!n'
alias youtube='web_search duckduckgo \!yt'
alias map='web_search duckduckgo \!m'
alias image='web_search duckduckgo \!i'
stibinator's avatar
stibinator committed
58
alias ducky='web_search duckduckgo \!'