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.
Using z-shell (zsh) you can use
ls -laR *(^U)
or
ls -la **/*(^U)
to search for all files recursively not owned by you.