Answers for "ubuntu how to tell how many files under a folder recursive"

5

count files recursively linux

find DIR_NAME -type f | wc -l
Posted by: Guest on September-10-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 "ubuntu how to tell how many files under a folder recursive"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language