Skip to content

Instantly share code, notes, and snippets.

@jdecaron
Created January 29, 2014 15:16
Show Gist options
  • Save jdecaron/8690095 to your computer and use it in GitHub Desktop.
Save jdecaron/8690095 to your computer and use it in GitHub Desktop.
#! /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