Created
March 27, 2019 11:46
-
-
Save marmot1123/9159d566c8c6dc4f95244f9a88a49118 to your computer and use it in GitHub Desktop.
ディレクトリ以下のディスク使用量上位n件を表示するワンライナー
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
du -hd 1 $1 | sort -hr | head -n $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment