1.finds all files with last modified date is greater than some date
find . -mtime -1
2. Create a list of files that were modified after a given date.
find . -mtime -2 -exec ls -l {} \;
find . -mtime -1
2. Create a list of files that were modified after a given date.
find . -mtime -2 -exec ls -l {} \;
No comments:
Post a Comment