linux 下删除目录及其子目录下某类文件

  • 2
  • 8,360 views
  • A+
所属分类:Linux

Linux下,如果想要删除目录及其子目录下某类文件,比如说所有的txt文件,则可以使用下面的命令:

find . -name "*.txt" -type f -print -exec rm -rf {} \;

. 表示在当前目录下

-name "*.txt"

表示查找所有后缀为txt的文件

-type f

表示文件类型为一般正规文件

-print

表示将查询结果打印到屏幕上

-exec command

command为其他命令,-exec后可再接其他的命令来处理查找到的结果,上式中,{}表示”由find命令查找到的结果“,如上所示,find所查找到的结果放置到{}位置,-exec一直到”\;“是关键字,表示find额外命令的开始(-exec)到结束(\;),这中间的就是find命令的额外命令,上式中就是 rm -rf
原文链接:https://blog.csdn.net/CaryaLiu/article/details/8753028

weinxin
我的微信公众号
我的微信公众号扫一扫

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

目前评论:2   其中:访客  0   博主  0

    • 帅的一笔 帅的一笔 0

      Warning: Use of undefined constant auto - assumed 'auto' (this will throw an Error in a future version of PHP) in /www/wwwroot/past.cmsky.org/wp-content/themes/begin5.2/inc/inc.php on line 911

      脱裤子放屁
      rm -rf ./*.txt
      不就行了

        • 厘米 厘米 9

          Warning: Use of undefined constant auto - assumed 'auto' (this will throw an Error in a future version of PHP) in /www/wwwroot/past.cmsky.org/wp-content/themes/begin5.2/inc/inc.php on line 911

          @帅的一笔 子目录下的怎么办呢 :smile: