Linux: How to find out files updated in last N minutes?

Linux: How to find out files updated in last N minutes?

Issue

How to find out files updated in last N minutes?

Resolution

It is simple. Use the following command:

Syntax:

find <directory name> -cmin -N

where N is the number of minutes

Example:

find /app/APPLTOP/instance/CommonDomain_webtier -cmin -10

Tip:

If you would like to see path of the file's directory then use the ls command along with the above command:

find /app/APPLTOP/instance/CommonDomain_webtier -cmin -10 ls

Environment

+ Oracle Linux x86-64

Hardening RHEL 7.1 (Maipo) - Part 1 - Services
Oracle Fusion: CommonDomain_webtier is not startin...