Answer the question
In order to leave comments, you need to log in
How to find files in Linux created on a specified day of the year (any)?
What is the command in Linux to find files created on a specified day (say, February 3) of any year?
Answer the question
In order to leave comments, you need to log in
Looks for files created after September 29, 2008 (but not after September 30 of the same year, inclusive):
find . -type f -newerc 2008-09-29 ! -newerc 2008-09-30
I didn’t use it, I just found it in a search engine:
https://github.com/kashav/fsql
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question