Mysterious execution of "find" command

Why does FreeBSD execute this find command:
Code:
24795 root        1  24    0 10052K  2632K zio->i  3   0:02  5.86% find
I've about five of them running on an idle machine. What does this do?
 
Yes, it surely a periodic script running.
To check which finds are executed by periodic you can do the following:
Code:
grep find /etc/periodic/*/*
 
Back
Top