Created
December 3, 2012 15:48
-
-
Save zmpeg/4195873 to your computer and use it in GitHub Desktop.
Script to recursively grep for files in WebObjects and print their locations nicely.
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
#!/bin/sh | |
for A in `grep -r "$1" | awk '{print $1}' | grep html`; do basename $A; done | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment