{"id":1072,"date":"2023-04-11T20:07:31","date_gmt":"2023-04-11T12:07:31","guid":{"rendered":"https:\/\/airy.cn\/WordPress\/?p=1072"},"modified":"2023-04-11T20:07:32","modified_gmt":"2023-04-11T12:07:32","slug":"linux%e8%bf%90%e7%bb%b4find%e5%91%bd%e4%bb%a4%e5%b8%b8%e8%a7%81%e7%94%a8%e6%b3%95","status":"publish","type":"post","link":"https:\/\/airy.cn\/WordPress\/?p=1072","title":{"rendered":"Linux\u8fd0\u7ef4find\u547d\u4ee4\u5e38\u89c1\u7528\u6cd5"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>find .\/ -name &#8220;d3plot*&#8221; | xargs rm<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>find .\/ -type f -name \u201cd3plot*\u201d|xargs rm -rf<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h1 class=\"wp-block-heading\">\u6d4b\u8bd5\u73af\u5883<\/h1>\n\n\n\n<p>\u8bf4\u660efind\u547d\u4ee4\u67e5\u627e\u6587\u4ef6\u7684\u5e38\u7528\u65b9\u6cd5<br>\u9996\u5148\u642d\u5efa\u7b80\u5355\u7684\u6d4b\u8bd5\u73af\u5883,\u5728<code>&nbsp;\/server\/test\/<\/code>\u76ee\u5f55\u4e0b\u751f\u6210\u683c\u5f0f\u4e3a<code>01.txt 02.txt ... 20.txt<\/code>\u603b\u517120\u4e2a\u6587\u4ef6<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir -p \/server\/test\ncd \/server\/test\ntouch {01..20}.txt\ntouch {30..40}.php\n<\/code><\/pre>\n\n\n\n<h1 class=\"wp-block-heading\"><a><\/a><a><\/a>1\uff09\u6700\u5e38\u7528\u7684\uff0c\u6839\u636e<strong>\u6587\u4ef6\u540d<\/strong>\u67e5\u627e\u6587\u4ef6<\/h1>\n\n\n\n<pre class=\"wp-block-code\"><code><em>##\u7cbe\u786e\u67e5\u627e17.txt\u6587\u4ef6<\/em>\nfind .\/ -type f -name \"17.txt\"\n\n<em>##\u67e5\u627e01.txt-09.txt\u5171\u8ba19\u4e2a\u6587\u4ef6<\/em>\nfind .\/ -type f -name \u201c0*\u201d\n\n<em>##\u67e5\u627e\u4ee5txt\u4e3a\u540e\u7f00\u7684\u6240\u6709\u6587\u4ef6<\/em>\nfind .\/ -type f -name \"*.txt\"\n<\/code><\/pre>\n\n\n\n<p>\u5728\u67e5\u627e\u5230\u5bf9\u5e94\u6587\u4ef6\u540e\uff0c\u53ef\u4ee5\u8fdb\u4e00\u6b65\u5904\u7406\uff0c\u6bd4\u5982\u5220\u9664\u6587\u4ef6<br>\u65b9\u6cd5\u4e00\uff1a<code>find .\/ -type f -name \u201c0*\u201d|xargs rm -rf<\/code><\/p>\n\n\n\n<p>\u65b9\u6cd5\u4e8c\uff1a<code>find .\/ -type f -name \u201c0*\u201d -exec rm -rf {} \\;<\/code><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\u6b64\u5904\u7684`{}`\u662f\u67e5\u627e\u5230\u7ed3\u679c\u7684\u5360\u4f4d\u7b26\uff0c\u8868\u793a\u6267\u884c\u5220\u9664\u52a8\u4f5c\u7684\u5bf9\u8c61\u662f\u524d\u9762\u67e5\n\u627e\u5230\u7684\u6587\u4ef6\uff1b\u5982\u679c\u6ca1\u6709\u5360\u4f4d\u7b26\uff0c\u5219\u4f1a\u5bf9\u6240\u6709\u6587\u4ef6\u6267\u884c\uff08\u5220\u9664\uff09\u64cd\u4f5c\u3002\n\u6b64\u5904\u7684`;`\u662f\u7ed3\u675f-exec\u7528\u7684\uff0c\u53cd\u659c\u6760`\\`\u5219\u8868\u793a\u8f6c\u4e49\u5b57\u7b26\u3002\n<\/code><\/pre>\n\n\n\n<p>\u4e0a\u8ff02\u4e2a\u5220\u9664\u65b9\u6cd5\u5bf9\u4e0b\u9762\u6240\u6709\u67e5\u627e\u7ed3\u679c\u901a\u7528\u3002<\/p>\n\n\n\n<h1 class=\"wp-block-heading\"><a><\/a><a><\/a>2\uff09\u6839\u636e<strong>\u6587\u4ef6\u7c7b\u578b<\/strong>\u67e5\u627e\u6587\u4ef6<\/h1>\n\n\n\n<p>\u4e0a\u9762\u7684\u53c2\u6570<code>-type f<\/code>\u9650\u5b9a\u4e86\u67e5\u627elinux\u7cfb\u7edf\u4e2d\u7684\u666e\u901a\u6587\u4ef6\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\u67e5\u627e\u76ee\u5f55  \n-type d\n\n\u7b26\u53f7\u8fde\u63a5\u6587\u4ef6\n-type l\n<\/code><\/pre>\n\n\n\n<h1 class=\"wp-block-heading\"><a><\/a><a><\/a>3\uff09\u6839\u636e<strong>\u6587\u4ef6\u5927\u5c0f<\/strong>\u67e5\u627e\u6587\u4ef6<\/h1>\n\n\n\n<p>\u6b64\u5904\u53c2\u6570<code>-size +10M<\/code>\u8868\u793a\u5927\u4e8e10M\u7684\u6587\u4ef6\uff1b<br>\u53c2\u6570<code>-size -10M<\/code>\u8868\u793a\u5c0f\u4e8e10M\u7684\u6587\u4ef6\uff1b<br>\u53c2\u6570<code>-size 10M<\/code>\u8868\u793a\u7b49\u4e8e10M\u7684\u6587\u4ef6\uff1b<\/p>\n\n\n\n<p>\u9664\u4e86<code>M<\/code>\u8868\u793aMB<br>\u8fd8\u6709<code>G<\/code>\u8868\u793aGB<br>\u5c0f\u5199<code>k<\/code>\u8868\u793aKB<\/p>\n\n\n\n<h1 class=\"wp-block-heading\"><a><\/a><a><\/a>4\uff09\u6839\u636e\u6587\u4ef6<strong>\u6743\u9650<\/strong>\u67e5\u627e<\/h1>\n\n\n\n<p>\u53c2\u6570<code>-perm<\/code>\u8868\u793a\u5229\u7528\u6587\u4ef6\u5c5e\u4e3b\u3001\u5c5e\u7ec4\u3001\u5176\u4ed6\u7528\u6237\u7684\u6743\u9650\u67e5\u627e\u9700\u8981\u7684\u6587\u4ef6\uff0c\u4f8b\u5982\u67e5\u627e644\u6743\u9650\u6587\u4ef6<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find .\/ -type f -perm 644\n<\/code><\/pre>\n\n\n\n<h1 class=\"wp-block-heading\"><a><\/a><a><\/a>5\uff09\u6839\u636e\u6587\u4ef6<strong>\u5c5e\u4e3b<\/strong>\u4fe1\u606f\u67e5\u627e<\/h1>\n\n\n\n<p>\u6b64\u5904\u7528\u5230\u53c2\u6570<code>-user \u5c5e\u4e3b<\/code><br>\u5047\u8bbe\u8981\u67e5\u8be2\u6839\u76ee\u5f55\u4e0b\u5c5e\u4e3b\u4e3aEric\u7684\u6587\u4ef6<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/ -type f -user Eric\n<\/code><\/pre>\n\n\n\n<h1 class=\"wp-block-heading\"><a><\/a><a><\/a>6\uff09\u6839\u636e\u6587\u4ef6\u7684<strong>\u65f6\u95f4\u6233<\/strong>\u67e5\u627e<\/h1>\n\n\n\n<h2 class=\"wp-block-heading\"><a><\/a><a><\/a>1\uff09\u8bbf\u95ee\u6587\u4ef6\u7684\u65f6\u95f4\u6233\u2014atime<\/h2>\n\n\n\n<p>\u5373<strong>\u6700\u540e\u4e00\u6b21<\/strong>\u8bfb\u53d6\u6587\u4ef6\u7684\u65f6\u95f4<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>3\u5929\u524d\u8bbf\u95ee\u7684\u6587\u4ef6\uff08\u65f6\u95f4\u533a\u95f4\uff09\nfind .\/ -type f -atime +3\n\n\u6b63\u597d\u662f3\u5929\u524d\uff08\u90a3\u4e2a\u65f6\u95f4\u70b9\uff09\u8bbf\u95ee\u7684\u6587\u4ef6\nfind .\/ -type f -atime 3\n\n\u6700\u8fd13\u5929\u5185\u8bbf\u95ee\u7684\u6587\u4ef6\uff08\u65f6\u95f4\u533a\u95f4\uff09\nfind .\/ -type f -atime -3\n\n5\u5929\u524d\u81f33\u5929\u524d\u7684\u65f6\u95f4\u6bb5\u5185\u8bbf\u95ee\u7684\u6587\u4ef6\uff08\u65f6\u95f4\u533a\u95f4\uff09\nfind .\/ -type f -atime -5 -atime +3\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a><\/a><a><\/a>2\uff09\u4fee\u6539\u6587\u4ef6\u5185\u5bb9\u7684\u65f6\u95f4\u6233\u2014mtime<\/h2>\n\n\n\n<h2 class=\"wp-block-heading\"><a><\/a><a><\/a>3\uff09\u4fee\u6539\u6587\u4ef6\u5c5e\u6027\u7684\u65f6\u95f4\u6233\u2014<a href=\"https:\/\/so.csdn.net\/so\/search?q=ctime&amp;spm=1001.2101.3001.7020\" target=\"_blank\" rel=\"noreferrer noopener\">ctime<\/a><\/h2>\n\n\n\n<p>\u53c2\u6570\u7528\u6cd5\u7c7b\u4f3c\u4e8eatime\uff0c\u6b64\u5904\u4e0d\u518d\u91cd\u590d\uff0c\u4ec5\u5f3a\u8c03\u4e8c\u8005\u533a\u522b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mtime--\u6587\u4ef6\u5185\u5bb9\u6700\u540e\u4e00\u6b21\u88ab\u4fee\u6539\nctime--\u6587\u4ef6\u5c5e\u4e3b\u3001\u7c7b\u578b\u3001\u6743\u9650\u3001\u4f4d\u7f6e\u6700\u540e\u4e00\u6b21\u88ab\u4fee\u6539<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>find .\/ -name &#8220;d3plot*&#8221; | xargs rm find .\/  &#8230; <a title=\"Linux\u8fd0\u7ef4find\u547d\u4ee4\u5e38\u89c1\u7528\u6cd5\" class=\"read-more\" href=\"https:\/\/airy.cn\/WordPress\/?p=1072\" aria-label=\"\u9605\u8bfb Linux\u8fd0\u7ef4find\u547d\u4ee4\u5e38\u89c1\u7528\u6cd5\">\u9605\u8bfb\u66f4\u591a<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kadence_starter_templates_imported_post":false,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-1072","post","type-post","status-publish","format-standard","hentry","category-airy-tech"],"_links":{"self":[{"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=\/wp\/v2\/posts\/1072","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1072"}],"version-history":[{"count":1,"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=\/wp\/v2\/posts\/1072\/revisions"}],"predecessor-version":[{"id":1073,"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=\/wp\/v2\/posts\/1072\/revisions\/1073"}],"wp:attachment":[{"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1072"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1072"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/airy.cn\/WordPress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1072"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}