Skip to content

Instantly share code, notes, and snippets.

@ojimac
Created June 3, 2012 04:19
Show Gist options
  • Save ojimac/2861865 to your computer and use it in GitHub Desktop.
Save ojimac/2861865 to your computer and use it in GitHub Desktop.
ディスク使用量調査(ファイルサイズ毎にソート)するコマンド
# Linux
$ du -x --max-depth=1 / | sort -n
# Mac OS X
$ du -x -d 1 / | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment