Logo Background

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

Leave a Comment