Skip to content

Instantly share code, notes, and snippets.

@kikaigyo
Created October 23, 2012 08:44
Show Gist options
  • Save kikaigyo/3937675 to your computer and use it in GitHub Desktop.
Save kikaigyo/3937675 to your computer and use it in GitHub Desktop.
Automataのサービスで使う検索用のアレ
#Web検索
open "https://www.google.co.jp/search?hl=ja&qscrl=1&q=$@"
open "http://www.google.com/search?q=$(cat | ruby -e 'require "cgi"; print CGI.escape($<.read.chomp)')"
# news検索
open "https://google.co.jp/search?hl=ja&gl=jp&tbm=nws&q=$@"
# 画像検索
open "https://google.co.jp/search?hl=ja&tbm=isch&source=og&tab=ja&q=$@"
# 地図検索
open "https://maps.google.co.jp/maps?hl=ja&q=$@"
# YouTube検索
open "http://www.youtube.com/results?search_query=$@"
via: http://applech.info/mac-text-right-click-gogle-search-automator/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment