Find all files bigger than X k


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

In example: find all files (recursively from the current directory) bigger than 20000kb


Copy this code and paste it in your HTML
  1. find . -size +20000k -exec du -h {} \;

Report this snippet


Comments


You need to login to view comments.