Skip to content

Instantly share code, notes, and snippets.

@jvanja
Created October 30, 2015 08:47
Show Gist options
  • Save jvanja/a81390680b5e88ae2355 to your computer and use it in GitHub Desktop.
Save jvanja/a81390680b5e88ae2355 to your computer and use it in GitHub Desktop.
Find 10 largest files under current directory and show them
find . -type f -exec ls -s {} \; | sort -n -r | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment