Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jtabone16/5843180 to your computer and use it in GitHub Desktop.
Save jtabone16/5843180 to your computer and use it in GitHub Desktop.
Search Google and Stack Overflow via bash
google() {
gq=$(sed 's/ /+/g' <<<"$*")
open -a /Applications/Google\ Chrome.app "http://www.google.com/search?q=$gq";
}
oflow(){
gq=$(sed 's/ /+/g' <<<"$*")
open -a /Applications/Google\ Chrome.app "http://www.stackoverflow.com/search?q=$gq";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment