Created
May 7, 2014 21:19
-
-
Save eric-wood/9a39be3a6d0a912619b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# search for files! | |
alias ff="ack --ruby --css --html --yaml --sass --js --scala --xml --shell" | |
# limit scope of search to directories that normally have the code we want :D | |
function f() { | |
ff "$@" app/ engines/; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍