#!/bin/sh
find -path '*/.svn' -prune -o -type f -print0 | xargs -0 grep "$@"
