Can I get help fixing my code to count every subdirectory (excluding "PATH" itself)?
num_directories=$( find $dir -type d | wc -l)
Also need help fixing the total byte count of each file
total_size=$( find $dir -type f -ls | awk '{total+=5}END{print total}';)
I understand you won't have access to the same files but I think the code with the calculations would be the same.
To count all subdirectories recursively under a directory, excluding the directory itself:
Example:
Also do not parse the text output of
ls
command for any reason, see why here and here.To print the byte count for all files (recursively) in the current directory:
To get the total as a number alone (retract only the first field of last line)
or the same