How can I find files that are bigger/smaller than x bytes?
find . -type f -size +4096c to find files bigger than 4096 bytes. And : find . -type f -size -4096c to find files smaller than 4096 bytes. Notice the + and – difference after the size switch. The -size switch explained: -size n[cwbkMG] File …