find(1) /opt/munchkin_den/ -size +108k -a -size -110k
search for files in a directory hierarchy
find [-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression]
-size n[cwbkMG]
       File uses n units of space.  The following suffixes can be used:

       `b'    for 512-byte blocks (this is the default if no suffix is used)

       `c'    for bytes

       `w'    for two-byte words

       `k'    for Kilobytes (units of 1024 bytes)

       `M'    for Megabytes (units of 1048576 bytes)

       `G'    for Gigabytes (units of 1073741824 bytes)

       The  size  does  not  count indirect blocks, but it does count blocks in sparse files that are not
       actually allocated.  Bear in mind that the `%k' and  `%b'  format  specifiers  of  -printf  handle
       sparse  files  differently.   The  `b'  suffix always denotes 512-byte blocks and never 1 Kilobyte
       blocks, which is different to the behaviour of -ls.
expr1 expr2
       Two expressions in a row are taken to be joined with an implied "and"; expr2 is not  evaluated  if
       expr1 is false.

expr1 -a expr2
       Same as expr1 expr2.

expr1 -and expr2
       Same as expr1 expr2, but not POSIX compliant.
source manpages: find