10日以内に更新されたファイルを検索

# find . -mtime -10 -ls

10日以上前に更新したファイルを検索する

# find . -mtime +10

更新日のファイルを検索する

# find . -mtime 10