Skip to content

Instantly share code, notes, and snippets.

@jrumbut
Created May 13, 2015 13:23
Show Gist options
  • Save jrumbut/440fbaa4de96e3e32fd7 to your computer and use it in GitHub Desktop.
Save jrumbut/440fbaa4de96e3e32fd7 to your computer and use it in GitHub Desktop.
List top ten largest files recursively from the current directory
find . -type f -ls | awk '{print $7" "$11}' | sort -nr | head -n 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment