web-search.plugin.zsh 1.61 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
  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="
11
    yahoo       "https://search.yahoo.com/search?p="
12
    duckduckgo  "https://www.duckduckgo.com/?q="
13
    yandex      "http://yandex.ru/yandsearch?text="
14
15
16
17
18
  )

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

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

32
33
34
35
36
  # 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
37
  else
38
39
40
    # 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
41
  fi
Hong Xu's avatar
Hong Xu committed
42

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

stibinator's avatar
stibinator committed
46

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

stibinator's avatar
stibinator committed
53
54
55
56
57
58
#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
59
alias ducky='web_search duckduckgo \!'