Use Linux Find and Awk to Locate Large Files


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



Copy this code and paste it in your HTML
  1. find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $NF ": " $5 }'

Report this snippet


Comments


You need to login to view comments.