Skip to content

Instantly share code, notes, and snippets.

@jlengstorf
Last active October 5, 2015 23:57
Show Gist options
  • Save jlengstorf/2898957 to your computer and use it in GitHub Desktop.
Save jlengstorf/2898957 to your computer and use it in GitHub Desktop.
Find all files over 10MB in size.
find / -mount -noleaf -type f -size +10000k -print0 | xargs -0 ls -lhSr | awk '{printf "%*s %s\n",7,$5":",$9}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment