-
find "first100" filename before 20 days ago in DIR and sort by name, and ls find DIR /. -ctime +20 -type f -iname "first100*" | sort -n | xargs ls -lthr delete them rm -rf `find DIR/. -ctime +20 -type f -iname "first100*" | sort -n`