Date: Thu, 29 Jul 1999 14:21:08 -0500 (CDT) From: David Scheidt <dscheidt@enteract.com> To: Phil Regnauld <regnauld@ftf.net> Cc: freebsd-chat@FreeBSD.ORG Subject: Re: ?? file Message-ID: <Pine.NEB.3.96.990729141957.65622A-100000@shell-1.enteract.com> In-Reply-To: <19990729205428.49306@ns.int.ftf.net>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.NEB.3.96.990729141957.65622A-100000>