Answers for "linux count files in subdirectories"

5

count files recursively linux

find DIR_NAME -type f | wc -l
Posted by: Guest on September-10-2020
0

linux count files in subdirectories

find . -type f | cut -d/ -f2 | sort | uniq -c | sort -nr
Posted by: Guest on February-15-2021
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 "linux count files in subdirectories"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language