Counting files in subdirs


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. find . -name '.svn' -prune -or -maxdepth 2 -type d -print -exec sh -c 'find {} -name ".svn" -prune -or -print | wc -l' \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.