Skip to content

Instantly share code, notes, and snippets.

@wingsuitist
Last active November 3, 2015 09:55
Show Gist options
  • Save wingsuitist/6be773556963fbb415bb to your computer and use it in GitHub Desktop.
Save wingsuitist/6be773556963fbb415bb to your computer and use it in GitHub Desktop.
google search command function for bash
# google search command
# usage:
# google test
# google "site:9gag.com developers"
function google() {
curl -s --get --data-urlencode "q=$1" http://ajax.googleapis.com/ajax/services/search/web?v=1.0 \
| sed 's/"unescapedUrl":"\([^"]*\).*/\1/;s/.*GwebSearch",//';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment