Skip to content

Instantly share code, notes, and snippets.

@4ydx
Created July 1, 2015 03:51
Show Gist options
  • Select an option

  • Save 4ydx/19c0f7810d7c55a2a2bb to your computer and use it in GitHub Desktop.

Select an option

Save 4ydx/19c0f7810d7c55a2a2bb to your computer and use it in GitHub Desktop.
.bashrc
findg() {
find . -type f -exec grep -Hn "$1" {} \;
}
vim_open() {
vim $(find . -type f -exec grep -l "$1" {} \;)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment