Quantcast
Channel: Bashタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 2822

ターミナルからググる!

$
0
0

検索のためにブラウザ開くのがめんどい

  1. トラックパッドでブラウザをフォーカスする
  2. 検索バーをクリックする
  3. キーボードに手を移す

なんてしていたら日が暮れてしまう!

ターミナルからshellでgoogle検索する

function _search_on_oogle(){words="$(IFS="+";echo"${${@:1}[*]}")"if["$words"!=""];then
     open "https://google.com/search?q=$words"fi}alias gg="_search_on_google"

上を.zshrcとかに書いておく

こうできる!

$ gg go 技術書 おすすめ

他にも...

# google mapで検索function _search_on_maps(){words="$(IFS="+";echo"${${@:1}[*]}")"if["$words"!=""];then
    open "https://www.google.com/maps/search/$words"fi}alias map="_search_on_maps"
$ map 渋谷 焼肉 

などなど

楽しいターミナルライフを目指す!


Viewing all articles
Browse latest Browse all 2822

Latest Images

Trending Articles