/ Published in: Bash
In example: find all files (recursively from the current directory) bigger than 20000kb
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -size +20000k -exec du -h {} \;