Skip to content

Instantly share code, notes, and snippets.

@chadmayfield
Last active June 15, 2016 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chadmayfield/9dafa7cc48d491c37ac9b3fb7be27a20 to your computer and use it in GitHub Desktop.
Save chadmayfield/9dafa7cc48d491c37ac9b3fb7be27a20 to your computer and use it in GitHub Desktop.
#!/bin/bash
find / -path /proc -prune -o -path /dev -prune -o -type f -size +50M -exec ls -lh {} \; | awk '{ print $5 "\t: " $NF}' | sort --human-numeric-sort -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment