On Fri, Jul 22, 2011 at 4:01 PM, Steve Cohen <sco...@javactivity.org> wrote:
> Is there an easy way to restrict svn diff operation to files of a certain
> extension (say .h)?  A quick glance at the manual suggested nothing to me.

Nope: you'd have to parse the output of a "list" command or a local
"find", which shouldn't be hard.

     find . -name .svn -type d -prune -o -type f -name \*\.h -print | sort

Should give you a good list on a Linux or UNIX box should give you a
handy alphabetical list to work with

Reply via email to