84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
两个空目录, 用du -h 看一个是 4K 一个是 12K
原来乳齿~根据 @冰灵果 的答案测试了一下.
rm a -fr for (( j=339; j<341; j++));do mkdir a/$j -p for (( i=0; i<$j; i++));do touch a/$j/$i;done rm a/$j/* done
ringa_lee
如何重现题主的问题
mkdir a ls -l # a = 4096 = 4k #create 500 files in directory a for (( i=0; i<500; i++));do touch a/$i;done rm a/* ls -l # a = 12288 = 12k
如何重现题主的问题