Skip to content

Instantly share code, notes, and snippets.

@ssstonebraker
Created August 20, 2013 19:47
Show Gist options
  • Save ssstonebraker/6286275 to your computer and use it in GitHub Desktop.
Save ssstonebraker/6286275 to your computer and use it in GitHub Desktop.
find large files
#!/bin/bash
#From http://brakertech.com/linux-find-large-files/
# find large files
echo "find files over 100MB"
find / -type f -size +100000k -exec ls -lh {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment