I want to filter the output of the ls command based on file size. Any .jpg or .png files greater than 100KB should be reported in the output.
I've been able to filter the .png / .jpg files, but I'm not able to discard any files smaller than 100KB.
Here is what I'm currently using:
ls -lah | grep '.png\|.jpg'
Any ideas how I can do this?