I have a folder that contains so many files/folders inside it that even basic commands like du
and find
are crashing. I'd like to clean up some old files from it... but obviously I can't do that with the find
command...
# find /opt/graphite/storage/whisper -mtime +30 -type f -delete
Aborted (core dumped)
What command or trick can I use to delete files from that folder since find
isn't working?