Search or find big files within Linux or unix

Here is a good way to do this

Search or find big files Linux (50MB) in current directory, enter:

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