Terminal Find Files by SizeFind all files that have a size >= 100MBsudo find / -type f -size +100000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'