Unix Find File Modified Time
If you use UNIX to perform a file search with the file that was modified since yesterday, you can use the find command below which will find specific zip files: -
find . -name "*.zip" -mtime -1 -exec ls {} \;
The mtime -1 means file since yesterday. You can change it to 0, which means it will find out those file that modified today
Related Posts
- Unix Find File With Modified Time
- Unix Find And Grep Command
- Unix Backup Specific File Extension
- CHMOD Recursive Command On Specific File Extension
PreviousNext» DIG DNS Lookup
Leave a Comment



