5.9 Miscellaneous useful commands
% find ~ -name src -print
/home/tardis/frank/src
Root's crontab file sometimes has an entry similar to the following:
30 3 * * * find / -name core -exec rm -f {} \; -o -fstype nfs -prune
This instructs the cron program to execute the find command at 3:30 am everyday. The find command searches every directory, except those on file systems of type "nfs", for files named "core" and removes them.