列出主目录及其下所有内容使用的块数量的命令是什么?只有一个数字,而不是完整的列表。
答案1
像这样:
du -s --block-size=$MY_BLOCK_SIZE $HOME
当然,替换$MY_BLOCK_SIZE
为您想要使用的块大小,或者--blocksize=$MY_BLOCK_SIZE
如果您想使用默认的1024
字节/块,则省略该参数:
Display values are in units of the first available SIZE from --block-size, and the
DU_BLOCK_SIZE, BLOCK_SIZE and BLOCKSIZE environment variables. Otherwise, units
default to 1024 bytes (or 512 if POSIXLY_CORRECT is set).