counting number of directories in a specific directory

后端 未结 15 2235
被撕碎了的回忆
被撕碎了的回忆 2020-12-22 21:06

How to count the number of folders in a specific directory. I am using the following command, but it always provides an extra one.

find /directory/ -maxdept         


        
15条回答
  •  孤城傲影
    2020-12-22 21:25

    Get a count of only the directories in the current directory

    echo */ | wc

    you will get out put like 1 309 4594

    2nd digit represents no. of directories.

    or

    tree -L 1 | tail -1

提交回复
热议问题