按大小查找文件更多 MIN 和更少 MAX

find file by size more MIN and less MAX

我如何使用 linux find 命令来搜索 MIN 多于 MAX

的文件

我尝试使用以下命令:

find . -type f -a -size +1000 -a -size -1100

但是没用

假设您希望文件大小介于 1000 和 1100 字节之间:

find . -type f -size +1000c -a -size -1100c