search

Home  >  Q&A  >  body text

linux - centos 下,为什么两个空目录显示大小不一样?

两个空目录, 用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_leeringa_lee2797 days ago606

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师2017-04-17 11:38:50

    How to reproduce the subject’s problem

    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
    

    reply
    0
  • Cancelreply