Recursively find the number of files in a directory.
For example, if directory one has directory 12 directories and each of these 12 directories have another 13 directories. and the grandchild (13 directories) has a fixed number of files. How do I find how many it has?
I am trying to visualize the output in the following fashion:
a/b/1/ -- 50 files a/b/2/ -- 10 files a/c/1/ -- 20 files.