tags:

views:

18

answers:

0

In terminal, how can I find files that are bigger or smaller than x bytes? I suppose I can do something like "find . -exec ls -l {} \;" then pipe the result to awk to filter by file size. But shouldn't there be an easier way than this? Thank you.