linux删除文件的6种方法(总结)


本文摘自PHP中文网,作者ringa_lee,侵删。

首先建立50万个文件:

1

2

3

4

test  for i in $(seq 1 500000)

for> do

for> echo test >>$i.txt

for> done

1.rm

1

2

3

4

test  time rm -f *

zsh: sure you want to delete all the files in /home/hungerr/test [yn]? y

zsh: argument list too long: rm

rm -f *  3.63s user 0.29s system 98% cpu 3.985 total

由于文件数量过多,rm不起作用。

2.find

1

2

test  time find ./ -type f -exec rm {} \;

find ./ -type f -exec rm {} \;  49.86s user 1032.13s system 41% cpu 43:19.17 total

大概43分钟。

3.find with delete

1

2

test  time find ./ -type f -delete      

find ./ -type f -delete  0.43s user 11.21s system 2% cpu 9:13.38 total

用时9分钟。

阅读剩余部分

相关阅读 >>

Linux中主机无法ping通虚拟机的解决方法

Linux如何隐藏index.php

Linux下目录的x执行权限问题探讨

怎么设置Linux实例带宽和cpu跑满或跑高排查

Linux sort多字段排序详解

Linux常用命令视频教程【推荐】

Linux使用mail命令发送邮件的方法

Linux zip解压乱码怎么办

怎么在Linux下载文件

Linux外网无法ping通

更多相关阅读请进入《Linux》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...