Horje
count sub files in folder linux Code Example
linux count files in subdirectories
find . -type f | cut -d/ -f2 | sort | uniq -c | sort -nr
count sub files in folder linux
find . -type f -print | wc -l
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




Shell

Related
number of files in subdirectories linux Code Example number of files in subdirectories linux Code Example
check how much memory linux Code Example check how much memory linux Code Example
grab ipaddress in variable linux Code Example grab ipaddress in variable linux Code Example
ip address in variable Code Example ip address in variable Code Example
ubuntu show memory usage Code Example ubuntu show memory usage Code Example

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