查找在过去 10 分钟内修改过的文件

Reg*_*ser 10 bash find

我正在运行此命令以找出过去 10 分钟内修改过的文件

 find / -fstype local -mtime -10m
Run Code Online (Sandbox Code Playgroud)

但每次都会出现以下错误

find: missing argument to `-mtime'
Run Code Online (Sandbox Code Playgroud)

上面有什么问题?

nit*_*ins 10

-mmin就像

find / -fstype local -mmin -10
Run Code Online (Sandbox Code Playgroud)