For instance, I have a large filesystem that is filling up faster than I expected. So I look for what\'s being added:
find /rapidly_shrinking_drive/ -type f
with GNU find,
find /path -name "offender" -printf "%s\n" | awk '{t+=$1}END{print t}'