Re: differencing only header files

2011-07-22 Thread Shlomi Fish
On Fri, 22 Jul 2011 15:01:09 -0500 Steve Cohen 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. > A hacky way would be to use something like: $ ack -g '\.h$' | xargs -d '\n' svn

Re: differencing only header files

2011-07-22 Thread Nico Kadel-Garcia
On Fri, Jul 22, 2011 at 4:01 PM, Steve Cohen 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

differencing only header files

2011-07-22 Thread Steve Cohen
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.