[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ls files that were modified on a certain date
From: |
Jim Meyering |
Subject: |
Re: ls files that were modified on a certain date |
Date: |
Thu, 19 Jul 2012 00:16:32 +0200 |
Enda wrote:
> How do I list files that were modified on (or since) a certain date?
One simple way is to create a time stamp file with the specified date,
and then to use find's "-newer FILE" predicate:
touch -d '1999-01-01 12:00:01' stamp
find dir ... -type f -newer stamp