You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
cd /riddlebox/Vidoes/Anime\ New/ |
|
find . -type d -print0 | while read -d '' -r dir; do |
|
files=("$dir"/*) |
|
printf "%5d files in %s\n" "${#files[@]}" "$dir" |
|
done
|
|
|