Created
October 23, 2012 08:44
-
-
Save kikaigyo/3937675 to your computer and use it in GitHub Desktop.
Automataのサービスで使う検索用のアレ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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