sudo find / -type f -size +(fileSize) -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’ Example: sudo find / -type f -size +20000k -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’
Learning through interaction
sudo find / -type f -size +(fileSize) -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’ Example: sudo find / -type f -size +20000k -exec ls -lh {} \; | awk ‘{ print $9 “: ” $5 }’