I am running this command to find out the files which were modified in last 10 minutes
find / -fstype local -mtime -10m
but it is giving following error each time
find: missing argument to `-mtime'
What is wrong with above?
|
feedback
|
|
Use mmin instead of mtime which is only for hours.
| |||
|
feedback
|
|
Gnu find seems to want -mtime argument as days
See -mmin | |||
|
feedback
|