I have a directory I'm in. I can see there's tons of files in it. When I run:
find ./ -type f -mtime +1400
It prints out a lengthy list. Not exaggerated long thou. I'm attempting to delete these files so I run:
find ./ -type f -mtime +1400 -exec rm -f {} \;
When I run the above command nothing happens. No error it just hangs there for a while. It's been over 10 minutes and it's still there. Any ideas how I could delete those items?