Articles & Code Snippets


How to count all the files recursively?

How to count all the files recursively?


How to count all the files recursively through directories in Linux:
find -maxdepth 1 -type d | while read -r dir; do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done
web


Archives