1. 程式人生 > >linux下刪除大量小文件

linux下刪除大量小文件

小文件 刪除 linux

1、Linux下怎麽刪除大量的小文件或者以數字開頭的小文件?

解答:

模擬環境,在/tmp目錄下創建1000000個小文件

cd /tmp && touch {1..1000000}

方法1:

[[email protected] tmp]# ls|egrep "^[0-9]*"|xargs ls -l


方法2:

[[email protected] tmp]# find /tmp -type f -name "[0-9]*"|xargs rm -f


方法3:

[[email protected] tmp]# rm -f  [0-9]*



本文出自 “每天一小步” 博客,請務必保留此出處http://fenyuer.blog.51cto.com/11265169/1942534

linux下刪除大量小文件