Answers for "print total no. of files (not directories) in each subdirectory with the name of the subdirectory in bash script"

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 "print total no. of files (not directories) in each subdirectory with the name of the subdirectory in bash script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language