Find Large Files


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

This command will list every file under /my/directory larger than 250kB and sort it largest to smallest.


Copy this code and paste it in your HTML
  1. find /my/directory -size +250k -ls | sort -nr -k 7

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.