Command to find and list all files above a defined size. Works for debian based distros and Centos. If the output its wrong in other systems, you can play with awk params.
find . -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
Command to find and list all files above a defined size. Works for debian based distros and Centos. If the output its wrong in other systems, you can play with awk params.
find . -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'