using find to exclude dirs, while specifying a give user...

Charles Curley charlescurley at charlescurley.com
Tue Sep 4 00:07:33 UTC 2007


On Mon, Sep 03, 2007 at 03:10:17PM -0700, bruce wrote:
> Hi....
> 

> when i insert the -user "user1".. it blows up....
> 
> ie: find / \(-path "/foo" -o -path "/foo2" \) -prune -o -user "user1" -o
> print....  <<doesn't work!!!
> 

Try this instead:

find / \(-path "/foo" -o -path "/foo2" \) -prune -user "user1"

You don't really need the -print as it is implied if no other output
command is indicate ( -ls, e.g.).

I think it's the -os outside the parentheses that are causing your
problem. You want the default -and. To translate into English:

starting at root, find files in either /foo or /foo2, without
descending into directories, and owned by user1. -prune always returns
true, so it -ands nicely.

Since you are pruning, I would try it like so:

find /foo /foo2 -prune -user "user1"

I think those are equivalent, but would test it to see.


-- 

Charles Curley                  /"\    ASCII Ribbon Campaign
Looking for fine software       \ /    Respect for open standards
and/or writing?                  X     No HTML/RTF in email
http://www.charlescurley.com    / \    No M$ Word docs in email

Key fingerprint = CE5C 6645 A45A 64E4 94C0  809C FFF6 4C48 4ECD DFDB
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20070903/64ed4ff7/attachment-0001.sig>


More information about the fedora-list mailing list