easy way to find large files
find / -type f -size +20000 -exec ls -lh {} \;| awk '{ print $9 ": " $5 }'
I’m always looking for clever ways to find large files, I found this one here

find / -type f -size +20000 -exec ls -lh {} \;| awk '{ print $9 ": " $5 }'
I’m always looking for clever ways to find large files, I found this one here
Leave a Reply