Skip to content

Instantly share code, notes, and snippets.

@marmot1123
Created March 27, 2019 11:46
Show Gist options
  • Save marmot1123/9159d566c8c6dc4f95244f9a88a49118 to your computer and use it in GitHub Desktop.
Save marmot1123/9159d566c8c6dc4f95244f9a88a49118 to your computer and use it in GitHub Desktop.
ディレクトリ以下のディスク使用量上位n件を表示するワンライナー
#!/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