Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
In trying to track down a bug between two subtly different branches of code, I needed to know which files are different in the two branches (information which cvs doesn't always give), so I wrote this:
for file in `find lib -name '*.pm' -print`; \
> do diff --brief $file/home/ovid/work/master/$file; done 2>&1 \
> |grep -v 'No such file'|cut -d ' ' -f 2
Surely there's a better way to get a list of which files are different in two virtually identical directory structures?
Re: Easier Bulk Diff? (Score:1)
diff -qr dir1 dir2
John.
--
Re: (Score:2)
That helps. I can use it to get that command down to this:
That let's me ignore CVS directories and files which are in one and not the other. If I want to include the latter:
It doesn't quite restrict me to everything I want, but it's pretty close. Thanks!
Graphical diff tool (Score:1)
There needs to be an ackdiff (Score:1)
If only you used svn (Score:1)