X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Message-Id: <200710100610.l9A6ADDk029020@dell2.home> To: cygwin AT cygwin DOT com, Brian Dessent cc: leisner AT rochester DOT rr DOT com Subject: Re: -exec on find(1) broken In-reply-to: <470B4F1B.3AD3BCB8@dessent.net> References: <470B1B1B DOT 2060404 AT columbus DOT rr DOT com> <20071009062547 DOT GA19172 AT suncomp1 DOT spk DOT agilent DOT com> <470B22FF DOT 10107 AT columbus DOT rr DOT com> <470B288E DOT 8060504 AT columbus DOT rr DOT com> <470B4F1B DOT 3AD3BCB8 AT dessent DOT net> Comments: In-reply-to Brian Dessent message dated "Tue, 09 Oct 2007 02:51:23 -0700." MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <29017 DOT 1191996613 DOT 1 AT dell2 DOT home> Date: Wed, 10 Oct 2007 02:10:13 -0400 From: "Marty Leisner" 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 Brian Dessent writes on Tue, 09 Oct 2007 02:51:23 PDT > 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. > > That's still horribly overcomplicated and inefficient. Use "find . > -type f -mtime +18" to see what the results would be and "find . -type f > -mtime +18 -delete" to delete them. It's much more efficient to let > find do the deleting than worrying about creating a bunch of echo or rm > child processes. > Geez, thanks Brian...I've been using find for 25 years and never realized it had a delete option . I stay away from exec -- you can often do what you need with find -- or format output with -printf to do special formatting... I often used -exec with cp/mv -- but coreutils has an option (-t) so you can put these after xargs... marty -- 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/