15Dec Find the number of files in a directory
So I needed to find the number of files in a directory recursively. I found a great way to figure that out on Linux that has helped me a couple times now. I definitely need to remember it…anyway here is is:
find /my/directory -type f |wc -l
If you need to find the number of directories recursively [...]

