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

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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

Attachment: pgpQPExbppC6L.pgp
Description: PGP signature


[Index of Archives]     [Current Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]     [Fedora Docs]

  Powered by Linux