Find big files under Linux using find command

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