How to count number of files in each directory?

前端 未结 17 2731
小蘑菇
小蘑菇 2020-12-07 07:05

I am able to list all the directories by

find ./ -type d

I attempted to list the contents of each directory and count the number of files i

17条回答
  •  暖寄归人
    2020-12-07 07:55

    This will give the overall count.

    for file in */; do echo "$file -> $(ls $file | wc -l)"; done | cut -d ' ' -f 3| py --ji -l 'numpy.sum(l)'
    

提交回复
热议问题