List Large Files in Linux

find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'

or

du –max-depth=1 -h /


Post a Comment

Your email is never published nor shared. Required fields are marked *