web-dev-qa-db-ja.com

過去10分間に変更されたファイルを見つける

このコマンドを実行して、過去10分間に変更されたファイルを見つけます

 find / -fstype local -mtime -10m

しかしそれは毎回次のエラーを出している

find: missing argument to `-mtime'

上記の何が問題になっていますか?

9
Registered User

-mmin お気に入り

find / -fstype local -mmin -10
9
nitins

時間のみのmtimeの代わりにmminを使用します。

$ find / -fstype local -mmin -10
3
atx

GNU findは-mtime引数を日数で要求しているようです

File’s  data was last modified n*24 hours ago.

-mminを参照

2
jkj