How do I find all the files that were created today in Unix/Linux?

后端 未结 11 557
梦谈多话
梦谈多话 2020-12-24 00:21

How do I find all the files that were create only today and not in 24 hour period in unix/linux

11条回答
  •  有刺的猬
    2020-12-24 01:16

    This worked for me. Lists the files created on May 30 in the current directory.

    ls -lt | grep 'May 30'
    

提交回复
热议问题