On 24/10/06 15:45, Phill Coxon wrote:
> I have two sets of source code for a small project - the original
> version and a version with some files updated. Each are in a separate
> directory - projectA/ & projectB/
> 
> Can anyone suggest how I can recursively step through each file in the
> projectA directory and (subdirectories) and compare it to the same file
> in projectB to identify files that have changed?
> 
> Effectively I'm looking for the list of source files that have been
> modified in the project. 
> 
> Either a bash script or recommendations to any tools that do it would be
> greatly appreciated. 

diff -q projectA/  projectB/

meld projectA/  projectB/

Reply via email to