How to find the files that are created in the last hour in unix

前端 未结 6 1144
栀梦
栀梦 2021-01-29 18:36

How to find the files that are created in the last hour in unix

6条回答
  •  清歌不尽
    2021-01-29 19:06

    Check out this link for more details.

    To find files which are created in last one hour in current directory, you can use -amin

    find . -amin -60 -type f

    This will find files which are created with in last 1 hour.

提交回复
热议问题