From owner-freebsd-chat Thu Jul 29 12:24:23 1999 Delivered-To: freebsd-chat@freebsd.org Received: from pop3-3.enteract.com (pop3-3.enteract.com [207.229.143.32]) by hub.freebsd.org (Postfix) with SMTP id E422D15171 for ; Thu, 29 Jul 1999 12:24:11 -0700 (PDT) (envelope-from dscheidt@enteract.com) Received: (qmail 69727 invoked from network); 29 Jul 1999 19:21:08 -0000 Received: from shell-1.enteract.com (dscheidt@207.229.143.40) by pop3-3.enteract.com with SMTP; 29 Jul 1999 19:21:08 -0000 Date: Thu, 29 Jul 1999 14:21:08 -0500 (CDT) From: David Scheidt To: Phil Regnauld Cc: freebsd-chat@FreeBSD.ORG Subject: Re: ?? file In-Reply-To: <19990729205428.49306@ns.int.ftf.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-chat@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 29 Jul 1999, Phil Regnauld wrote: > David Scheidt writes: > > > > Or less error-prone: > > > > 341631 ?? 342177 README.html 24717 pkg > > 350121 CVS 357958 files 341630 trace > > 342176 Makefile 222996 patches 39858 work > > bash-2.02# find . -inum 341631 -remove > > find: -remove: unknown option > > bash-2.02# find . -inum 341631 -delete > > For several files with consecutive inodes, I think not, as in: Okay, then do this: bash# ls -i 341631 ???? 342177 README.html 24717 pkg 350121 CVS 357958 files 341630 trace 342176 Makefile 222996 patches 39858 work bash# find . -inum 341631 -print ./cee bash# bash# !!:s/print/remove find . -inum 341631 -remove find: -remove: unknown option bash# find . -inum 341631 -print ./cee bash# bash# !!:s/print/delete/ find . -inum 341631 -delete David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-chat" in the body of the message