Assume you are interested only in them perl programs and they are nicely named with .pl extension<br><br>If names is not consistent, &#39;file&#39; can be used to generate the set to compare, as perl scripts is &quot;perl script text executable&quot; per &#39;file&#39;.<br>
<br>Two-step comparison<br><ul><li>cd dir1 &amp;&amp; for i in `find . -type f -name &quot;*.pl&quot;`; do ---- $i ----; diff $i dir2/$i; done</li><li>cd dir2 &amp;&amp; for i in `find . -type f -name &quot;*.pl&quot;`; do ---- $i ----; diff $i dir1/$i; done</li>
</ul><br><div class="gmail_quote">On Tue, May 20, 2008 at 1:42 PM, Chris Fowler &lt;<a href="mailto:cfowler@outpostsentinel.com">cfowler@outpostsentinel.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Are there any good tools to do a diff on two directory trees? &nbsp;I&#39;m doing<br>
an upgrade and there are many perl programs spread throughout and I want<br>
to see the differences. &nbsp;I&#39;ve used the diff program before but these<br>
trees are big and there will be a lot of noise. &nbsp;There are binary files<br>
as well as text files.<br>
<br>
_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
</blockquote></div><br>