TOP ▲
itcore TOP
>
TIPS
>
du.php
タグ:
ubuntu
サブフォルダ
容量
Ubuntu サブフォルダの容量を調べる。 | itcore 2016
# サブフォルダ毎の容量を調べて、サイズ順にソートする。
du -sbc *|tee du.log ; cat du.log | sort -n > du.log2; cat du.log2
# 個別に大きさを調べる
du -sh サブフォルダ