Find large files linux

Find files larger than 100MB sorted by size

find / -type f -size +100M -exec ls -lh {} \; 2>/dev/null | sort -k5 -rh | head -20