Software >> OS >> Unix >> Commands >> find >> How to find files by user

Example 1: find files owned by user root

# find / -user root

Example 2 : find files NOT owned by user root

# find / ! -user root