Find out what files are owned by apache
in Linux
In an audit of my system I needed to find all the files owned by apache.
[ps]
find ./ -name apache
[/ps]
Simple!
Here's the group and user example:
[ps]
find ./ -group apache -name apache
[/ps]