Linux如何统计一个文件夹的目录数分两级?

How to count the directories of a folder in two level in Linux?

我只想计算一个文件夹的目录数。例如:

我有这样的结构:

我需要一个只计算粗体文件的命令。在这种情况下,结果将是“3”。

这可能吗?

谢谢!

你可以试试这个。希望有用

find <path> -type d  -printf '%d\n' | grep 2 | wc -l

%d File's depth in the directory tree; 0 means the file is a starting-point.