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