find /home -name error_log |
That’ll give you a list of all the error_log files on the server.
If you’d like to delete them all, you can do it this way:
find /home -name error_log -exec rm -f {} \; |
And, if you want to know how big all those files are, you can do this:
find /home -name error_log -exec stat -c%s {} \; |
That’s all, hope this helps somebody!