- A+
所属分类:Linux
Linux下,如果想要删除目录及其子目录下某类文件,比如说所有的txt文件,则可以使用下面的命令:
find . -name "*.txt" -type f -print -exec rm -rf {} \;
. 表示在当前目录下
-name "*.txt"
表示查找所有后缀为txt的文件
-type f
表示文件类型为一般正规文件
表示将查询结果打印到屏幕上
-exec command
command为其他命令,-exec后可再接其他的命令来处理查找到的结果,上式中,{}表示”由find命令查找到的结果“,如上所示,find所查找到的结果放置到{}位置,-exec一直到”\;“是关键字,表示find额外命令的开始(-exec)到结束(\;),这中间的就是find命令的额外命令,上式中就是 rm -rf
原文链接:https://blog.csdn.net/CaryaLiu/article/details/8753028
我的微信公众号
我的微信公众号扫一扫
2018年9月7日 上午10:34 沙发
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
不就行了
2018年9月7日 下午2:20 1层
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
@帅的一笔 子目录下的怎么办呢