Skip to content

Instantly share code, notes, and snippets.

@debianmaster
Created December 8, 2014 17:42
Show Gist options
  • Save debianmaster/c5f930ba31f1e87188bf to your computer and use it in GitHub Desktop.
Save debianmaster/c5f930ba31f1e87188bf to your computer and use it in GitHub Desktop.
Linux Commands
To find all files greater than 50MB
`find / -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment