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

Reply via email to