Linux List All Large Files


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Centos
  2.  
  3. $ find . -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
  4.  
  5. Ubuntu
  6.  
  7. $ find . -type f -size +10000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.