Linux如何统计一个文件夹的目录数分两级?
How to count the directories of a folder in two level in Linux?
我只想计算一个文件夹的目录数。例如:
我有这样的结构:
- Main_folder
文件夹
- Folder_1
- Another_file
文件夹
File_2
- Another_file
File_3
- Another_file
- Another_file
我需要一个只计算粗体文件的命令。在这种情况下,结果将是“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.
我只想计算一个文件夹的目录数。例如:
我有这样的结构:
- Main_folder
文件夹
- Folder_1
- Another_file
- Folder_1
文件夹
File_2
- Another_file
File_3
- Another_file - Another_file
我需要一个只计算粗体文件的命令。在这种情况下,结果将是“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.