find . -atime +100 -exec some-command {} \; # Not accessed/100 days

find . -mtime +100 -ok some-command {} \;# Unmodified/100 days, ask