This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 当LINUX中的一个目录的文件数量有10000个时候,用什么命令可以删除所有文件? NOTE: rm -f * 不行.
-pleased(please);
2004-11-9
(#1972885@0)
-
我玩玩而已.
-pleased(please);
2004-11-9
(#1972888@0)
-
10000 是个大约数, 我也不知道里面有多少文件.
-pleased(please);
2004-11-9
(#1972893@0)
-
rm -rf a*
rm -rf b*
-labourg(虫虫-努力工作);
2004-11-9
(#1972925@0)
-
这种思路基本可以,就是有点累.
-pleased(please);
2004-11-10
(#1974152@0)
-
$for i in your_dir/*; do rm-rf $i; done
-oasis(oasis);
2004-11-9
(#1972929@0)
-
哥儿们,你别太狠了。他不一定要删除子目录。轻易不要叫别人使用 rm -rf还有他的问题可能和文件数无关。我试了一下,一万个文件没有问题。
-ghyll(阿土);
2004-11-9
(#1973398@0)
-
好主意, -R, 我会注意的.
-pleased(please);
2004-11-10
(#1974171@0)
-
use find.
-tester(test);
2004-11-9
(#1973166@0)
-
能否具体一点?
-pleased(please);
2004-11-10
(#1974173@0)
-
find . -type f -exec rm {} \;
-tester(test);
2004-11-10
(#1974727@0)
-
thx. I will try all this methods.
-pleased(please);
2004-11-11
(#1975211@0)
-
This works too.
-pleased(please);
2004-11-11
(#1975542@0)
-
多年前,我经常在一个黑窗口中敲入 del *.*
-logitech(happytrader);
2004-11-10
(#1974832@0)
-
After so many years, I am still entering "del *.*" from that black windowJust kidding
-kpax(kosmo);
2004-11-11
{12}
(#1975422@0)
-
rm -rf <parent directory name> ? This is the unix command.
-orange0(桔子);
2004-11-11
(#1975884@0)