LoginSignup
2
3

More than 3 years have passed since last update.

duコマンド 容量の大きなファイル洗い出し

Last updated at Posted at 2019-07-20
$ du -d2 | sort | grep "\dG"

-d = 表示する階層の深さを指定する
sort = 数字の大きい順にソート
grep "\dG" = Giga Byte単位のファイルのみを表示(\dは任意の数字を表す正規表現

階層は1~2ぐらいに設定するのがオススメ。

2
3
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
2
3