我有一个包含 40 GB 的数十个目录和内容的文件夹,我想查看根文件夹的确切大小(以字节为单位)。
我曾尝试使用这个,但它显示的大小以千字节为单位:
du -s foldername
答案1
使用-B1
参数来du
:
du -s -B1 foldername
$ man 1 du -B, --block-size=SIZE use SIZE-byte blocks
你也可以尝试--apparent-size
标志
答案2
du—估计文件空间使用情况
-B, --block-size=SIZE
scale sizes by SIZE before printing them. E.g., '-BM' prints sizes in units of 1,048,576 bytes. See SIZE format below.
-b, --bytes
equivalent to '--apparent-size --block-size=1'
例如,
user$ du -B1 filename
答案3
du -sb foldername
似乎奏效了