I could traverse the directory sizes using pattern in find command:
find . -name "results_*" -exec du -sm '{}' \;
Now I would like to delete the content of those directories, but still retaining those directories themselves (the results_*) to create a placeholder that they existed and could be found in a backup.
How could I do that?