いくつかのケースでは、特定の年よりも古いファイルを探したいとします。たとえば、1年と言えば、-mtime 1引数を使用できます。一方、特定の分よりも古いファイルを探したい場合は、例えば1分とし、-mmin 1引数を使用できます。

man find

次のステートメントを見つける

       -mmin n
              File’s data was last modified n minutes ago.

       -mtime n
              File’s  data  was  last  modified  n** 24  hours ago.  See the comments for
              -atime to understand how rounding affects the interpretation of file mod?
              ification times.

1年以上経過したファイルを検索する

find . -mtime +1

1分以上経過したファイルを検索する

find . -mmin +1