LoginSignup
0
0

More than 5 years have passed since last update.

ディレクトリの使用量を調べる

Posted at

直下のディレクトリ、ファイルの容量を調べる

.sh
du -sh *

容量大きい順

du -sk * | sort -nr

全ファイル容量大きい順

du -ak * | sort -nr

PDFのみ

du -ak ./**/*.pdf | sort -nr
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0