I would like to find (later delete) all music folders that are nearly empty (Banshee deletes only the music files but not the other files in there).
I tried with:
find -type d -size -500k \;
But it shows folders that contain bigger files too.
find -type d -size -500k -exec du {} \;
shows the correct size.
How to modify the find cmd to only show folders that are smaller then N?
