/ Published in: Bash
This command will list every file under /my/directory larger than 250kB and sort it largest to smallest.
Expand |
Embed | Plain Text
find /my/directory -size +250k -ls | sort -nr -k 7
You need to login to post a comment.
