Date: Tue, 16 May 2000 14:45:28 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: "Dr. J. Robert Lee" cc: djgpp AT delorie DOT com Subject: Re: recursive rm In-Reply-To: <8fpiqe$gpr$1@slb6.atl.mindspring.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 15 May 2000, Dr. J. Robert Lee wrote: > These are the suggestions for Unix. DOS anyone? > > find . -name "*.o" -exec rm {} \; > > with zsh you can write > rm **/*.o You can use the port of GNU Find, as others has pointed out. Or, you can use the DJGPP-specific feature: rm .../*.o This has the same effect as the zsh's **.