/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Centos $ find . -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' Ubuntu $ find . -type f -size +10000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'