Gentoo Archives: gentoo-user

From: "Mr. Jarry" <mr.jarry@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] How can I find all "orphaned" files?
Date: Fri, 25 Mar 2011 09:11:04
Message-Id: AANLkTikcsf8O+sVRUEBZdq1cD4qUirfzgF5YMVRjxuA2@mail.gmail.com
In Reply to: Re: [gentoo-user] How can I find all "orphaned" files? by Neil Bothwick
1 On Fri, Mar 25, 2011 at 12:10 AM, Neil Bothwick <neil@××××××××××.uk> wrote:
2 >
3 > qfile operates on the files you give it, it doesn't recurse into
4 > directories.
5 >
6 > Try find / -xdev -type f -exec qfile -o {} +
7
8 Oh, thanks, now it is clear. I think man-page is a little confusing:
9 "qfile -o" does not find orphan files, it only checkes if the given file
10 is orphan, or not. But first I have to prepare a list of files which
11 will be used as arguments for "qfile"...
12
13 Jarry