Created
January 29, 2014 15:16
-
-
Save jdecaron/8690095 to your computer and use it in GitHub Desktop.
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
#! /bin/bash | |
IFS=$'\n' | |
for a in `find -type f -size 1M -not -path '*.svn*'`; do | |
grep -inH "$1" $a | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment