get number of files in 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: how to check how many files are in a folder linux
$ ls | wc -l
Example 3: find number of files in a directory linux
find -maxdepth 1 -type d | while read -r dir; do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done
Example 4: shell show number of files in each folder
du -a | cut -d/ -f2 | sort | uniq -c | sort -nr