标签:小文件 删除 linux
1、Linux下怎么删除大量的小文件或者以数字开头的小文件?
解答:
模拟环境,在/tmp目录下创建1000000个小文件
cd /tmp && touch {1..1000000}
方法1:
[root@localhost tmp]# ls|egrep "^[0-9]*"|xargs ls -l
方法2:
[root@localhost tmp]# find /tmp -type f -name "[0-9]*"|xargs rm -f
方法3:
[root@localhost tmp]# rm -f [0-9]*
本文出自 “每天一小步” 博客,请务必保留此出处http://fenyuer.blog.51cto.com/11265169/1942534
标签:小文件 删除 linux
原文地址:http://fenyuer.blog.51cto.com/11265169/1942534