Find files in created between a date range

后端 未结 8 998
遥遥无期
遥遥无期 2021-01-30 03:57

I use AIX via telnet here at work, and I\'d like to know how to find files in a specific folder between a date range. For example: I want to find all files in folder X that were

8条回答
  •  迷失自我
    2021-01-30 04:34

    Some good solutions on here. Wanted to share mine as well as it is short and simple.

    I'm using find (GNU findutils) 4.5.11

    $ find search/path/ -newermt 20130801 \! -newermt 20130831
    

提交回复
热议问题