find . -type d -print0 | while read -d '' -r dir; do
files=("$dir"/*)
printf "%5d file count for directory %s\n" "${#files[@]}" "$dir"
done
Credits: https://stackoverflow.com/questions/15216370/how-to-count-number-of-files-in-each-directory
2018-11-23
MacOS - How to count the number of files in a given directory (command line)
find "/Path/Directory Name" -type f | wc -l
MacOS - How to remove a folder (or file) without being prompted for yes/no confirmations
rm -r "/Path/Target folder name"
MacOS - How to copy files using the command line, and avoid yes/no confirmation prompts
cp -av "original file name.ext" "\destination\path\target file name.ext"
Subscribe to:
Posts (Atom)