Skip to content

Instantly share code, notes, and snippets.

@leoluz
Created October 9, 2018 03:29
Show Gist options
  • Save leoluz/08656bad6a4d7adab5f1c257320b9149 to your computer and use it in GitHub Desktop.
Save leoluz/08656bad6a4d7adab5f1c257320b9149 to your computer and use it in GitHub Desktop.
Find the 25 biggest files in dir
find . -type f -exec ls -al {} \; | sort -nr -k5 | head -n 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment