Skip to content

Instantly share code, notes, and snippets.

@ekka21
Created July 19, 2012 01:44
Show Gist options
  • Save ekka21/3140222 to your computer and use it in GitHub Desktop.
Save ekka21/3140222 to your computer and use it in GitHub Desktop.
Linux: show directories
//If you only want to show directories, replace "-type f" with "-type d".
find . -type f -exec du -sk {} \; | sort -nr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment