# 文件夹
du -h . --maxdepth 0 | grep '[0-9]M\>'
# 文件
find . -name '*' -size +1M
# 文件夹
du -h . --maxdepth 0 | grep '[0-9]M\>'
# 文件
find . -name '*' -size +1M
# 文件夹 du -h . --maxdepth 0 | grep '[0-9]M\>' # 文件 find . -name '*' -size +1M
# 文件夹 du -h . --maxdepth 0 | grep '[0-9]M\>' # 文件 find . -name '*' -size +1M
find /(查找范围) -name '查找关键字' -type d
看着怪怪的,为什么不直接使用find