Re: svn issues

2006-08-30 Thread Marc Prud'hommeaux
Sadly, I think the only way to do it is: find openjpa-*/src -path '*/.svn' -prune -o -type f -print | xargs -e grep -l '@since' On Aug 30, 2006, at 9:57 AM, Patrick Linskey wrote: Hey, Frustratingly, things like 'grep -l @since openjpa-*/src | xargs sed ...' don't have quite the

Re: svn issues

2006-08-30 Thread Eddie O'Neil
Something like this might be handy: find . ! ( -path */.svn/* ) -exec sed ... ; -print as it won't descend into .svn directories. Or something that just greps *.java extensions since SVN stores its work files as *.java.svn-work: find . -name *.java -exec sed ... ; -print These have

Re: svn issues

2006-08-30 Thread Marc Prud'hommeaux
Note that there is a proposed patch to grep to address this sort of problem. You can vote for it (registration required) at: http://savannah.gnu.org/bugs/? func=detailitemitem_id=11017#dependencies On Aug 30, 2006, at 10:20 AM, Eddie O'Neil wrote: Something like this might be

RE: svn issues

2006-08-30 Thread Patrick Linskey
-- Patrick Linskey BEA Systems, Inc. -Original Message- From: Marc Prud'hommeaux [mailto:[EMAIL PROTECTED] On Behalf Of Marc Prud'hommeaux Sent: Wednesday, August 30, 2006 10:35 AM To: open-jpa-dev@incubator.apache.org Subject: Re: svn issues Note that there is a proposed