Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何使用 linux find 命令搜索更多 MIN 和更少 MAX 的文件
我尝试使用以下命令:
find . -type f -a -size +1000 -a -size -1100
但它不起作用
假设您希望文件大小在 1000 到 1100 字节之间:
find . -type f -size +1000c -a -size -1100c