Find Giant Files on OSX

Find all files on system 100Megabytes and up
src: http://unix.stackexchange.com/questions/140367/finding-all-large-files-in-the-root-filesystem

Find all files on system 100Megabytes and up
find / -xdev -type f -size +100M

20 largest files or dirs:
du -ax / | sort -rn | head -20
Current dir only:
du -ax . | sort -rn | head -20

Here’s one used to find files larger than a Gigabyte:

find . -type f -size +1000000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'