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
I have tried all this commands but no luck. So I have found this one that gives me an answer:
find . -type f -mtime -30 -exec ls -l {} \; | awk '{ s+=$5 } END { print s }'