From owner-freebsd-chat@FreeBSD.ORG Thu Dec 9 10:08:16 2004 Return-Path: Delivered-To: freebsd-chat@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43C1216A4CE for ; Thu, 9 Dec 2004 10:08:16 +0000 (GMT) Received: from f26.mail.ru (f26.mail.ru [194.67.57.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0227643D2F for ; Thu, 9 Dec 2004 10:08:16 +0000 (GMT) (envelope-from infofarmer@mail.ru) Received: from mail by f26.mail.ru with local id 1CcLDZ-000GRA-00; Thu, 09 Dec 2004 13:08:13 +0300 Received: from [83.237.13.129] by win.mail.ru with HTTP; Thu, 09 Dec 2004 13:08:13 +0300 From: Andrew To: Giorgos Keramidas Mime-Version: 1.0 X-Mailer: mPOP Web-Mail 2.19 X-Originating-IP: [83.237.13.129] Date: Thu, 09 Dec 2004 13:08:13 +0300 In-Reply-To: <20041209005259.GA3206@gothmog.gr> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Message-Id: cc: chat@freebsd.org Subject: Re: The essence of argument order X-BeenThere: freebsd-chat@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew List-Id: Non technical items related to the community List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Dec 2004 10:08:16 -0000 > > i've just typed > > # rm -print0 -type l | xargs -0 rm > > instead of > > # rm -type l -print0 | xargs -0 rm > > in a directory with 50+ Gigs of data > > what a nice feeling... > > shit... > > None of them worked? > Right, I meant # find -print0 -type l | xargs -0 rm instead of # find -type l -print0 | xargs -0 rm I need to get more sleep