From owner-freebsd-questions@FreeBSD.ORG Sat Jun 10 16:35:33 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD74816AABC for ; Sat, 10 Jun 2006 16:35:33 +0000 (UTC) (envelope-from freebsd01@dgmm.net) Received: from lon-mail-4.gradwell.net (lon-mail-4.gradwell.net [193.111.201.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id D370F45068 for ; Sat, 10 Jun 2006 09:16:25 +0000 (GMT) (envelope-from freebsd01@dgmm.net) Received: from lon-mail-4.gradwell.net ([193.111.201.130] helo=webmaker country=GB ident=dave$pop3*dgmm*net) by lon-mail-4.gradwell.net with esmtpa (Gradwell gwh-smtpd 1.218) id 448a8de8.990b.1cf for freebsd-questions@freebsd.org; Sat, 10 Jun 2006 10:16:24 +0100 (envelope-sender ) From: dgmm To: freebsd-questions@freebsd.org Date: Sat, 10 Jun 2006 10:16:28 +0100 User-Agent: KMail/1.9.1 References: <20060609052138.9DE3216A556@hub.freebsd.org> <20060610104044.2933d274@localhost> In-Reply-To: <20060610104044.2933d274@localhost> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200606101016.29195.freebsd01@dgmm.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: Re: Directory and file comparison tool for X? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 16:35:33 -0000 On Saturday 10 June 2006 01:40, Norberto Meijome wrote: =A0 > On Fri, 9 Jun 2006 20:56:17 +1000 (EST) > > Ian Smith wrote: > > Re: freebsd-questions Digest, Vol 137, Issue 55 > > > > Hi Beto, > > > > (offlist as it's just a silly answer, not one for X) > > Hey Ian, > thx, not a silly answer at all > > > =A0> I'm looking for a tool that will allow me to compare directories > > =A0> (recursively) showing what files are different,etc. meld ( > > textproc/meld ) > can do this to some extent, showing missing files,etc, > > but not showing > what files are different withoug having to open each > > file and do a diff. > > > > Well of course 'diff -r dir1 dir2 | less' does that well in an xterm :) > > yeah, but it's just way too verbose. something that allows very quick > determination of differences / missing files, transfer them from one tree > to another,etc. Specially for LARGE trees. rsync -rn dir1 dir2 r =3D recurse directories n =3D no action, just report the diffs =2D-=20 Dave