Answers for "how to count file with sub folder in linux"

2

linux count files in subdirectories

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 December-22-2020
0

shell show number of files in each folder

du -a | cut -d/ -f2 | sort | uniq -c | sort -nr
Posted by: Guest on December-16-2020

Code answers related to "how to count file with sub folder in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language