Created
January 30, 2014 17:22
-
-
Save jonahbron/8713827 to your computer and use it in GitHub Desktop.
Shorten the command to search through rake routes
This file contains 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
# Create a new, empty file if it does not exist. Creates parent directories if necessary. | |
# | |
# author Jonah Dahlquist | |
# license CC0 | |
rrgrep() { | |
if hash zeus 2>/dev/null; then | |
zeus rake routes | grep $@ | |
else | |
rake routes | grep $@ | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment