I'm looking for a command that will list the number of files across several directories simultaneously. Currently, I can do this for a single directory:
lfs find DIRECTORY -type f | wc -l
But this is tedious to do iteratively. Can someone think of a way to do this more like this answer, but with lfs find, as opposed to gnu find?