Skip to content

Instantly share code, notes, and snippets.

@aic25
Created August 30, 2018 03:30
Show Gist options
  • Save aic25/5556d9d6d9513440573168f140ee236e to your computer and use it in GitHub Desktop.
Save aic25/5556d9d6d9513440573168f140ee236e to your computer and use it in GitHub Desktop.
file counter
#!/bin/bash
find . -type d -print0 | while read -d '' -r dir; do
files=("$dir"/*)
printf "%5d files in directory %s\n" "${#files[@]}" "$dir"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment