Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Search for files modified the last ... days (See related posts)

Searches for files modified up to 4 days ago. Change the 4 to whatever you desire.

find ./ -type f -mtime -4 -exec ls -al {} \;

Comments on this post

markusbucher posts on Jun 08, 2006 at 12:23
Searches for files modified between certain dates. Here for files older than 30 days but younger than 60 (penultimate month).
find ./ -type f -mtime -60 ! -mtime -30 -exec ls -la {} \;

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts