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]*