man find
find DIR -name PATTERN
find /var/www -mtime -1 -name '*.php'
modification time in hours: -mtime HOURS
modification time in minutes:
-mmin MINUTES
- n: exactly n 24-hour periods (days) ago, 0 means today.
- +n: more then n 24-hour periods (days) ago, or older then n,
- -n: less than n 24-hour periods (days) ago (-n), or younger then n. -1 means today.
Komentáre