{"id":1936,"date":"2023-09-18T17:33:56","date_gmt":"2023-09-18T09:33:56","guid":{"rendered":"https:\/\/qishiya.com\/?p=1936"},"modified":"2023-09-18T17:33:56","modified_gmt":"2023-09-18T09:33:56","slug":"linux-%e6%9f%a5%e6%89%be%e6%9f%90%e4%b8%80%e5%a4%a9%e5%88%9b%e5%bb%ba%e7%9a%84%e6%96%87%e4%bb%b6","status":"publish","type":"post","link":"https:\/\/qishiya.com\/?p=1936","title":{"rendered":"linux \u67e5\u627e\u67d0\u4e00\u5929\u521b\u5efa\u7684\u6587\u4ef6"},"content":{"rendered":"\n<p>\u5728 Linux \u4e0b\uff0c\u53ef\u4ee5\u4f7f\u7528 <code>find<\/code> \u547d\u4ee4\u548c <code>date<\/code> \u547d\u4ee4\u7ed3\u5408\u67e5\u627e\u76ee\u5f55\u4e0b\u67d0\u4e00\u5929\u521b\u5efa\u7684\u6587\u4ef6\u3002\u8bf7\u53c2\u8003\u4ee5\u4e0b\u6b65\u9aa4\uff1a<\/p>\n\n\n\n<p>\u4f7f\u7528 <code>cd<\/code> \u547d\u4ee4\u5207\u6362\u5230\u9700\u8981\u67e5\u770b\u7684\u76ee\u5f55\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\ncd \/path\/to\/directory\n<\/code><\/pre>\n\n\n\n<p>\u6267\u884c\u4ee5\u4e0b\u547d\u4ee4\u67e5\u627e\u6587\u4ef6\uff0c\u5c06 <code>&lt;yyyy-mm-dd><\/code> \u66ff\u6362\u4e3a\u4f60\u8981\u67e5\u8be2\u7684\u65e5\u671f\uff0c\u5e76\u4fdd\u7559\u53cc\u5f15\u53f7\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nfind . -type f -newermt \"&lt;yyyy-mm-dd> 00:00:00\" ! -newermt \"&lt;yyyy-mm-dd> 23:59:59\"\n<\/code><\/pre>\n\n\n\n<p>\u82e5\u8981\u67e5\u770b\u8fd9\u4e9b\u6587\u4ef6\u7684\u6570\u91cf\uff0c\u8bf7\u5c06\u4e0a\u8ff0\u547d\u4ee4\u4e0e <code>wc<\/code> \u547d\u4ee4\u7ed3\u5408\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nfind . -type f -newermt \"&lt;yyyy-mm-dd> 00:00:00\" ! -newermt \"&lt;yyyy-mm-dd> 23:59:59\" | wc -l\n<\/code><\/pre>\n\n\n\n<p>\u4f8b\u5982\uff0c\u82e5\u8981\u67e5\u627e <code>\/home\/user\/documents<\/code> \u76ee\u5f55\u4e2d 2022 \u5e74 1 \u6708 1 \u65e5\u521b\u5efa\u7684\u6587\u4ef6\u53ca\u5176\u6570\u91cf\uff0c\u8bf7\u6267\u884c\u4ee5\u4e0b\u547d\u4ee4\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\ncd \/home\/user\/documents\nfind . -type f -newermt \"2022-01-01 00:00:00\" ! -newermt \"2022-01-01 23:59:59\"\nfind . -type f -newermt \"2022-01-01 00:00:00\" ! -newermt \"2022-01-01 23:59:59\" | wc -l\n<\/code><\/pre>\n\n\n\n<p>\u6ce8\u610f\uff1a\u4e0a\u8ff0\u793a\u4f8b\u5047\u8bbe\u6587\u4ef6\u7cfb\u7edf\u652f\u6301\u6587\u4ef6\u521b\u5efa\u65f6\u95f4\uff08birth time\uff09\u8bb0\u5f55\u3002\u5982\u679c\u4e0d\u652f\u6301\uff0c\u4f60\u53ef\u80fd\u53ea\u80fd\u67e5\u770b\u6587\u4ef6\u7684\u4fee\u6539\u65f6\u95f4\u6216\u8bbf\u95ee\u65f6\u95f4\u3002\u5728\u8fd9\u79cd\u60c5\u51b5\u4e0b\uff0c\u53ef\u4ee5\u5c1d\u8bd5\u5c06 <code>-newermt<\/code> \u66ff\u6362\u4e3a <code>-newerct<\/code>\uff08\u67e5\u770b\u66f4\u6539\u65f6\u95f4\uff09\u6216 <code>-newerat<\/code>\uff08\u67e5\u770b\u8bbf\u95ee\u65f6\u95f4\uff09\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5728 Linux \u4e0b\uff0c\u53ef\u4ee5\u4f7f\u7528 find \u547d\u4ee4\u548c date \u547d\u4ee4\u7ed3\u5408\u67e5\u627e\u76ee\u5f55\u4e0b\u67d0\u4e00\u5929\u521b\u5efa\u7684\u6587\u4ef6\u3002\u8bf7\u53c2\u8003\u4ee5\u4e0b\u6b65\u9aa4\uff1a \u4f7f\u7528 cd \u547d\u4ee4\u5207\u6362\u5230\u9700\u8981\u67e5\u770b\u7684\u76ee\u5f55\u3002 \u6267\u884c\u4ee5\u4e0b\u547d\u4ee4\u67e5\u627e\u6587\u4ef6\uff0c\u5c06 &lt;yyyy-mm-dd> \u66ff\u6362\u4e3a\u4f60\u8981\u67e5\u8be2\u7684\u65e5\u671f\uff0c\u5e76\u4fdd\u7559\u53cc &#8230; <a title=\"linux \u67e5\u627e\u67d0\u4e00\u5929\u521b\u5efa\u7684\u6587\u4ef6\" class=\"read-more\" href=\"https:\/\/qishiya.com\/?p=1936\" aria-label=\"\u66f4\u591a linux \u67e5\u627e\u67d0\u4e00\u5929\u521b\u5efa\u7684\u6587\u4ef6\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[589],"tags":[588],"class_list":["post-1936","post","type-post","status-publish","format-standard","hentry","category-chatgpt","tag-chatgpt"],"_links":{"self":[{"href":"https:\/\/qishiya.com\/index.php?rest_route=\/wp\/v2\/posts\/1936","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/qishiya.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/qishiya.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/qishiya.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/qishiya.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1936"}],"version-history":[{"count":1,"href":"https:\/\/qishiya.com\/index.php?rest_route=\/wp\/v2\/posts\/1936\/revisions"}],"predecessor-version":[{"id":1937,"href":"https:\/\/qishiya.com\/index.php?rest_route=\/wp\/v2\/posts\/1936\/revisions\/1937"}],"wp:attachment":[{"href":"https:\/\/qishiya.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1936"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/qishiya.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1936"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/qishiya.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1936"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}