From owner-freebsd-questions@FreeBSD.ORG Sat Jun 10 07:03:06 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 4E4A516A418 for ; Sat, 10 Jun 2006 07:03:06 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id D526F43D70 for ; Sat, 10 Jun 2006 07:03:05 +0000 (GMT) (envelope-from freebsd@meijome.net) Received: (qmail 22371 invoked from network); 10 Jun 2006 17:03:03 +1000 Received: from 210-84-38-170.dyn.iinet.net.au (HELO localhost) (210.84.38.170) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 10 Jun 2006 17:03:03 +1000 Date: Sat, 10 Jun 2006 17:02:59 +1000 From: Norberto Meijome To: Eric Schuele Message-ID: <20060610170259.4893ef40@localhost> In-Reply-To: <448A3CBE.2010806@computer.org> References: <20060609122931.15984448@localhost> <448A3CBE.2010806@computer.org> X-Mailer: Sylpheed-Claws 2.2.3 (GTK+ 2.8.18; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org 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 07:03:06 -0000 On Fri, 09 Jun 2006 22:30:06 -0500 Eric Schuele wrote: > xxdiff > http://furius.ca/xxdiff/ thanks - i remember having used this one in the past, but i couldnt remember its name :) for those that like some GUI in their life, to launch xxdiff, i call a script from the XFCE menu. The script runs zenity to allow me to select 2 directories to compare: -- #!/bin/sh ZENITY="/usr/X11R6/bin/zenity" XXDIFF="/usr/local/bin/xxdiff" $XXDIFF --style windows `$ZENITY --file-selection --directory`/ \ `$ZENITY --file-selection --directory`/ --- thanks! Beto