Date: Fri, 23 Feb 2001 23:04:54 -0800 From: Dima Dorfman <dima@unixfreak.org> To: Matthew Thyer <thyerm@camtech.net.au> Cc: current@FreeBSD.org Subject: Re: find / -fstype local traverses non-local filesystems Message-ID: <20010224070454.975C33E02@bazooka.unixfreak.org> In-Reply-To: Message from Matthew Thyer <thyerm@camtech.net.au> of "Sat, 24 Feb 2001 17:04:44 %2B1030." <3A975604.30F12BBB@camtech.net.au>
next in thread | previous in thread | raw e-mail | index | archive | help
> The problem is that the find took forever and the disk on host > new was thrashing away most of the time. > > find seems to be traversing all file systems (local and non-local) > but just not reporting the found file when its on a non-local > filesystem. See PR bin/23906. In short, the solution is to use: find . \( -fstype local -o -prune \) -print (obviously you should still put in the directives for what you want to find) Dima Dorfman dima@unixfreak.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010224070454.975C33E02>