number of files in directory bash code example
Example 1: bash command to find the number of files in a directory
ls -1q | wc -l
Example 2: shell show number of files in each folder
du -a | cut -d/ -f2 | sort | uniq -c | sort -nr
ls -1q | wc -l
du -a | cut -d/ -f2 | sort | uniq -c | sort -nr