Skip to content

Commit

Permalink
Added Google Books, Images, and Amazon
Browse files Browse the repository at this point in the history
  • Loading branch information
wcaleb committed Sep 7, 2012
1 parent 0365950 commit 8930161
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions se-aliases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,27 @@ function scholar
open "http://scholar.google.com/scholar?hl=en&q=$QUERY"
}

function books
{
QUERY=$(urlencode "$1")
open "http://books.google.com/books?hl=en&q=$QUERY"
}

function images
{
QUERY=$(urlencode "$1")
open "http://images.google.com/images?q=$QUERY"
}

function images
{
QUERY=$(urlencode "$1")
open "http://images.google.com/images?q=$QUERY"
}

function amazon
{
QUERY=$(urlencode "$1")
open "http://www.amazon.com/s/?url=search-alias%3Daps&field-keywords=$QUERY"
}

0 comments on commit 8930161

Please sign in to comment.