X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Date: Mon, 24 Nov 2008 17:00:22 +0100 From: Spiro Trikaliotis To: cygwin AT cygwin DOT com Message-ID: <20081124160021.GA5595@trikaliotis.net> Mail-Followup-To: cygwin AT cygwin DOT com References: <1227540449 DOT 7201 DOT 45 DOT camel AT LxPC35> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1227540449.7201.45.camel@LxPC35> User-Agent: Mutt/1.5.17+20080114 (2008-01-14) X-SA-Exim-Connect-IP: 87.163.203.223 X-SA-Exim-Mail-From: an-cygwin AT spiro DOT trikaliotis DOT net Subject: Re: find . -regex '.*js' -type f -exec md5sum '{}' \\; really slow! X-SA-Exim-Version: 4.2.1 (built Tue, 09 Jan 2007 17:23:22 +0000) X-SA-Exim-Scanned: Yes (on mail.trikaliotis.net) X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Hello Bartolomeo, * On Mon, Nov 24, 2008 at 04:27:29PM +0100 Bartolomeo Nicolotti wrote: > /usr/bin/find . -type f -exec md5sum '{}' \\; [...] > Could some one help me to speed-up things on windows+cygwin? Just a guess: /usr/bin/find . -type f|xargs md5sum (Background: I expect the execution of md5sum to take much time. Thus, with the xargs approach, I make sure the md5sum is called less times, with more than one parameter each time - which will *hopefully* decrease the time) HTH, Spiro. -- Spiro R. Trikaliotis http://opencbm.sf.net/ http://www.trikaliotis.net/ http://www.viceteam.org/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/