X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
From: "Dave Korn" <dave.korn@artimi.com>
To: <cygwin@cygwin.com>
References: <470B1B1B.2060404@columbus.rr.com> <20071009062547.GA19172@suncomp1.spk.agilent.com> <470B22FF.10107@columbus.rr.com> <470B288E.8060504@columbus.rr.com>
Subject: RE: -exec on find(1) broken
Date: Tue, 9 Oct 2007 10:54:19 +0100
Message-ID: <046a01c80a5a$5ca300e0$2e08a8c0@CAM.ARTIMI.COM>
MIME-Version: 1.0
Content-Type: text/plain; 	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Office Outlook 11
In-Reply-To: <470B288E.8060504@columbus.rr.com>
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On 09 October 2007 08:07, Paul McFerrin wrote:

> Well, I finally got it!
> 
>      find . -type f -mtime +18 -exec /bin/echo {} \; | more
> 
> is the correct syntax.  Now I just replace "/bin/echo" with "/bin/rm"
> and I ready to go.

  Will break on paths/files with embedded spaces, use 

find . -type f -mtime +18 -exec /bin/echo '"{}"' \; | more

  Also if you're going to turn it into an rm, I'd generally do it in two
steps:

find . -type f -mtime +18 -exec /bin/echo rm '"{}"' \; > script.sh
(read script.sh in editor and make sure it's right!)
. ./script.sh

    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....


--
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/

