Answers for "count number of specific files in directory linux"

2

How to count number of files in each directory

du -a | cut -d/ -f2 | sort | uniq -c | sort -nr
Posted by: Guest on June-11-2020
2

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
Posted by: Guest on July-12-2020

Code answers related to "count number of specific files in directory linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language