counting number of directories in a specific directory

后端 未结 15 2230
被撕碎了的回忆
被撕碎了的回忆 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:22

    Best way to do it:

    ls -la | grep -v total | wc -l
    

    This gives you the perfect count.

提交回复
热议问题