Skip to content

Instantly share code, notes, and snippets.

@wordijp
Created September 29, 2016 06:31
Show Gist options
  • Save wordijp/78580f0c0d48a885cf3ad55d43aa462d to your computer and use it in GitHub Desktop.
Save wordijp/78580f0c0d48a885cf3ad55d43aa462d to your computer and use it in GitHub Desktop.
ディレクトリ内のファイルサイズが大きい順Top10を表示
# cygwinの場合
$ ls -la $(find . -type f) | sort -nr -k5 | awk -F' ' '{printf("%5s: %s\n",$5, $9)}' | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment