linux command to count number of files in a directory code example
Example 1: How to count number of files in each directory
du -a | cut -d/ -f2 | sort | uniq -c | sort -nr
Example 2: bash command to find the number of files in a directory
ls -1q | wc -l
Example 3: bash how many files in a directory
ls -1q log* | wc -l