> Hello,    
> I am unable to find a command that will list the number of total files
> in a directory and all subdirectories.
> Thank you in advance.

just pipe the output of find(1) to wc(1):

find . -type f | wc

Reply via email to