On 2026-05-16, Karen Lewellen <[email protected]> wrote: > Hi Chime, > Those suggestions are profoundly helpful. > Because I know approximate dates, I am using this as my focus instead of > file names. I tend to save things in work code for me, with my doing allot > of professional work in those windows. > Its a situation where I will know, as soon as the name shows, that it is > the one I need...but a general search will create far more data then is > helpful. > Does that resonate?
find . -maxdepth 1 -type f -newermt '2026-04-01' ! -newermt '2026-05-10' -printf '%f\n' will lists files in the current directory whose mtime is between April 1 and May 10 (start date excluded, end date included). It's true older systems may not have the -newermt flag. Seems to work, but not fully tested.

