Find Last Full Day Modified Files on Linux
Written by:
Will Kruss
on
31 May 2016 05:08 PM
|
|
Know the command to find all files modified in the last 24 hours in a particular specific directory & sub-directories. To find all files modified in the last 24 hours (last full day) in a particular specific directory and its sub-directories: find /directory_path -mtime -1 -print | |
|