1 Answer
you just use following command for remove the last 10 days files,
find /directory/path/ -mtime -10 -type f -exec rm -rf {} \;
Your Answer