Re: Excluding future-dated files in 'find' on Cygwin

2023-10-19 Thread Backwoods BC
On Fri, Oct 13, 2023 at 7:55 AM Andreas Metzler wrote: > > On 2023-10-13 Backwoods BC wrote: > [...] > > find ./ -mtime +0 -mtime -1 > > > but this found nothing. When I changed it to: > > > find ./ -mtime 0 -mtime -1 > > > it worked as desired and f

Excluding future-dated files in 'find' on Cygwin

2023-10-13 Thread Backwoods BC
This relates to 'find' on Cygwin. I often force the mtime on some files to be in the future so that they will always appear at the top of a directory listing by reverse date which is my preferred format in Windows. This lets me leave notes to myself that will always be at the top of the list. I t