Finding-Files-By-Size
Finding Files by Size
find ./inhere -size 1033c \! -executable
The above command uses the -size option for find and then looks for a file 1033 bytes in size.
Important to remember the c is what indicates bytes. Not b, as that indicates 512-byte blocks.
#bash