Add some aliases and google search functions

This commit is contained in:
2013-07-08 07:22:06 -04:00
parent cbb1810db6
commit fa8008bfa9
2 changed files with 14 additions and 1 deletions

View File

@@ -53,3 +53,13 @@ function take {
function gc {
git commit -m "$*"
}
# Search google for a term
function google() {
open /Applications/Google\ Chrome.app/ "http://www.google.com/search?q= $1";
}
# Open a file in chrome
function chrome () {
open -a /Applications/Google\ Chrome.app/ "$1"
}