Skip to content

Instantly share code, notes, and snippets.

@charrismatic
Created July 6, 2017 22:14
Show Gist options
  • Save charrismatic/925ce87f0de674f1f1eb118a9300cdd8 to your computer and use it in GitHub Desktop.
Save charrismatic/925ce87f0de674f1f1eb118a9300cdd8 to your computer and use it in GitHub Desktop.
Bash Functions
# COUNT FILES IN SUB DIRECTORIES
find . -maxdepth 1 -mindepth 1 -type d | while read dir; do
printf "%-25.25s : " "$dir"
find "$dir" -type f | wc -l
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment