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
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

Reply via email to