Have you considered just writing a simple shell script that would do something like
find /home -mtime -1 -print Which would give you a list of the files that were modified in the last 24 hours (You could change the mtime parameter to go back further in time), and then use that list of files to collect further data such as the file owners, or just pipe the list to "du -sh" and you would have the size of the total of changed data.
_______________________________________________ Tech mailing list [email protected] https://lists.lopsa.org/cgi-bin/mailman/listinfo/tech This list provided by the League of Professional System Administrators http://lopsa.org/
