[CentOS] compare directories

Thu Oct 23 13:53:42 UTC 2008
Bowie Bailey <Bowie_Bailey at BUC.com>

David Hlácik wrote:
> Hello guys,
> 
> I have two mirrors. I need to compare files and directories on both
> mirrors and as a result print list of those which are missing on
> mirror 2  
> 
> What i did
> 
> find /data > find.mirror1
> 
> find /data > find.mirror2
> 
> Now i need to get list of those directories which are missing in
> mirror1. 

find /data | sort > find.mirror1

find /data | sort > find.mirror2

diff find.mirror1 find.mirror2

-- 
Bowie