Skip to content

Instantly share code, notes, and snippets.

@kelmandor
Last active December 19, 2015 19:39
Show Gist options
  • Select an option

  • Save kelmandor/6007772 to your computer and use it in GitHub Desktop.

Select an option

Save kelmandor/6007772 to your computer and use it in GitHub Desktop.
finding big files on ubuntu
sudo find / -type f -size +100000k -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