Date: Tue, 5 Nov 1996 11:43:39 +0600 From: Tim Pierce <twpierce@midway.uchicago.edu> To: jrb@cs.pdx.edu Cc: questions@FreeBSD.org Subject: Re: tool for making diff tree? Message-ID: <9611051743.AA07056@bio-5.bsd.uchicago.edu> In-Reply-To: <199611051638.IAA21147@sirius.cs.pdx.edu> (message from Jim Binkley on Tue, 05 Nov 1996 08:38:26 -0800)
next in thread | previous in thread | raw e-mail | index | archive | help
If you want each file to be accompanied by its own diff, you might try doing something with find: cd old-src find . -type f -exec diff {} ../new-src/{} > {}.diff \; Gosh, that looks perverted.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?9611051743.AA07056>