Horje
number of files in subdirectories linux Code Example
linux count files in subdirectories
find . -type f | cut -d/ -f2 | sort | uniq -c | sort -nr
number of files in subdirectories 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
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
node upgrade mac os x Code Example node upgrade mac os x Code Example

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