使用 find -depth -maxdepth -mindepth 命令列出一定层级范围的文件夹或文件

1
find . -maxdepth 1 -type d -exec ls -ld "{}" \;
1
find . -maxdepth 2 -mindepth 2