Horje
list number of files in each folder linux Code Example
list number of files in each folder linux
find . -type d -print0 | while read -d '' -r dir; do
    files=("$dir"/*)
    printf "%5d files in directory %s\n" "${#files[@]}" "$dir"
done




Shell

Related
how check laravel version in in cmd Code Example how check laravel version in in cmd Code Example
upgrade bash version mac Code Example upgrade bash version mac Code Example
how to install a package on ubuntu Code Example how to install a package on ubuntu Code Example
install windows fonts on linux Code Example install windows fonts on linux Code Example
what is local repository Code Example what is local repository Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11