/ Published in: Bash
In example: find all files (recursively from the current directory) bigger than 20000kb
Expand |
Embed | Plain Text
find . -size +20000k -exec du -h {} \;
You need to login to post a comment.
In example: find all files (recursively from the current directory) bigger than 20000kb
find . -size +20000k -exec du -h {} \;
You need to login to post a comment.