Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking to recursively look through directories to find files NOT owned by a particular user and I am not sure how to write this. Any help would be appreciated. Thanks

share|improve this question

3 Answers

up vote 30 down vote accepted

The find(1) utility has primaries that can be negated ("reversed") using the "!" operator. On the prompt one must however escape the negation with a backslash as it is a shell metacharacter. Result:

find . \! -user foo -print
share|improve this answer

-user finds by user or user ID, and ! inverts the predicate. So, ! -user ....

share|improve this answer

You can use this:

find <dir> ! -user <username> 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.