哪个命令可以在当前目录下查找大于 100 MB 的普通文件?
find . -type f -size +100M
du . -type f -size +100M
find . -type f -size -100M
find . -type d -size +100M